Merge remote-tracking branch 'origin/master'

This commit is contained in:
simon 2017-11-25 09:44:45 -05:00
commit 3e74d1264d
2 changed files with 8 additions and 10 deletions

8
README.md Normal file
View File

@ -0,0 +1,8 @@
# Much-Assembly-Required-Frontend
Files for https://muchassemblyrequired.com/ frontend.
Requires a PHP environnment and a MySQL server (Database installation script: [database.sql](https://github.com/simon987/Much-Assembly-Required-Frontend/blob/master/database.sql)).
Make sure to change the configuration in /include/config.php.
More information about the game [here.](https://github.com/simon987/Much-Assembly-Required)
HTML template by ajlkn

View File

@ -7,13 +7,3 @@ create table mar_user
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)
);