Fixed missing packages and database

This commit is contained in:
2023-12-07 21:43:37 +01:00
parent 612c5a8f13
commit fec22e6388
2 changed files with 1 additions and 6 deletions

Binary file not shown.

View File

@@ -16,10 +16,5 @@ CREATE TABLE users (
password VARCHAR(255) NOT NULL, password VARCHAR(255) NOT NULL,
score INT UNSIGNED NOT NULL DEFAULT 0, score INT UNSIGNED NOT NULL DEFAULT 0,
PRIMARY KEY (id), PRIMARY KEY (id),
CONSTRAINT u_user_type_id INDEX ur_username_idx (username)
FOREIGN KEY (user_type_id)
REFERENCES user_types(id)
ON DELETE RESTRICT
ON UPDATE CASCADE,
INDEX ur_user_type_idx (user_type_id)
) ENGINE=InnoDB; ) ENGINE=InnoDB;