mirror of
https://github.com/simon987/Much-Assembly-Required-Frontend.git
synced 2025-12-15 23:59:04 +00:00
Initial commit
This commit is contained in:
19
database.sql
Normal file
19
database.sql
Normal 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)
|
||||
);
|
||||
Reference in New Issue
Block a user