Initial commit

This commit is contained in:
simon
2017-11-22 19:13:00 -05:00
commit e3ab67e95c
133 changed files with 202341 additions and 0 deletions

19
database.sql Normal file
View File

@@ -0,0 +1,19 @@
create table mar_user
(
username varchar(20) not null
primary key,
password tinytext not null,
authToken varchar(131) null,
tokenTime datetime null,
floppyData mediumblob null
);
create table mar_userdata
(
username varchar(20) not null
primary key,
userCode text null,
processed tinyint default '0' not null,
constraint fk_mar_userdata_mar_user1
foreign key (username) references mar_user (username)
);