mirror of
https://github.com/simon987/Much-Assembly-Required-Frontend.git
synced 2025-04-18 02:06:42 +00:00
10 lines
193 B
SQL
10 lines
193 B
SQL
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
|
|
);
|