about summary refs log tree commit diff stats
path: root/schema.sql
diff options
context:
space:
mode:
Diffstat (limited to 'schema.sql')
-rw-r--r--schema.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/schema.sql b/schema.sql index 61fdc45..ade7522 100644 --- a/schema.sql +++ b/schema.sql
@@ -8,7 +8,7 @@ CREATE UNIQUE INDEX `profile_by_path` ON `profiles`(`profile_path`);
8CREATE TABLE `games` ( 8CREATE TABLE `games` (
9 `game_id` INTEGER PRIMARY KEY, 9 `game_id` INTEGER PRIMARY KEY,
10 `steam_appid` INTEGER NOT NULL, 10 `steam_appid` INTEGER NOT NULL,
11 `moon_image` VARCHAR(255) NOT NULL 11 `color` VARCHAR(255) NOT NULL
12); 12);
13 13
14CREATE UNIQUE INDEX `game_by_appid` ON `games`(`steam_appid`); 14CREATE UNIQUE INDEX `game_by_appid` ON `games`(`steam_appid`);