mirror of
https://github.com/simon987/Much-Assembly-Required-Frontend.git
synced 2025-12-14 15:19:07 +00:00
Merge remote-tracking branch 'origin/master'
This commit is contained in:
8
README.md
Normal file
8
README.md
Normal 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
|
||||||
10
database.sql
10
database.sql
@@ -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)
|
|
||||||
);
|
|
||||||
Reference in New Issue
Block a user