From f599a2bf116504114b53cc9434c5eac3022d0418 Mon Sep 17 00:00:00 2001 From: Simon Fortier Date: Wed, 22 Nov 2017 19:24:12 -0500 Subject: [PATCH 1/2] Create README.md --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..d9727df --- /dev/null +++ b/README.md @@ -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 From 19897e008070a0fb7662be62c3fd1b35b92129c8 Mon Sep 17 00:00:00 2001 From: Simon Fortier Date: Wed, 22 Nov 2017 19:27:13 -0500 Subject: [PATCH 2/2] Update database.sql --- database.sql | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/database.sql b/database.sql index 0f0e6ae..79dc9f7 100644 --- a/database.sql +++ b/database.sql @@ -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) -); \ No newline at end of file