Added leaderboard page. Updated debug commands

This commit is contained in:
simon
2018-03-10 11:23:25 -05:00
parent b8c9beaead
commit d9ba7759e5
9 changed files with 223 additions and 52 deletions

View File

@@ -9,8 +9,8 @@ flush privileges;
use mar;
-- create tables
create table mar_user
(
create table mar_user (
username varchar(20) not null
primary key,
password tinytext not null,
@@ -18,3 +18,13 @@ create table mar_user
tokenTime datetime null,
floppyData mediumblob null
);
create table mar_vault_clear (
id INTEGER AUTO_INCREMENT PRIMARY KEY,
username VARCHAR(20) NOT NULL,
clear_time INTEGER NOT NULL,
vault_id VARCHAR(20),
FOREIGN KEY (username) REFERENCES mar_user(username),
CONSTRAINT mar_vault_clear_uc_1 UNIQUE (username, vault_id)
)