Update database.sql

This makes an installation way easier
This commit is contained in:
Kevin Ramharak 2018-01-02 14:31:12 +01:00 committed by GitHub
parent c943c829f0
commit 07d8d01c92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,3 +1,10 @@
-- make sure it exists
create database if not exists mar;
-- switch to use it
use mar;
-- create tables
create table mar_user
(
username varchar(20) not null