Update database.sql

This commit is contained in:
Simon Fortier
2017-11-22 19:27:13 -05:00
committed by GitHub
parent f599a2bf11
commit 19897e0080

View File

@@ -7,13 +7,3 @@ create table mar_user
tokenTime datetime null, tokenTime datetime null,
floppyData mediumblob 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)
);