about summary refs log tree commit diff stats
path: root/schema.sql
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2018-03-01 16:11:34 -0500
committerKelly Rauchenberger <fefferburbia@gmail.com>2018-03-01 16:11:34 -0500
commit09a36afd0731b4565dc4628114e6cd76a42e8893 (patch)
tree764026074a42bbed1b7ed97e018550e039107b4d /schema.sql
parent473b327ceed3afb5e5683002b39fd9c1947cb25a (diff)
downloadlunatic-09a36afd0731b4565dc4628114e6cd76a42e8893.tar.gz
lunatic-09a36afd0731b4565dc4628114e6cd76a42e8893.tar.bz2
lunatic-09a36afd0731b4565dc4628114e6cd76a42e8893.zip
Renamed "moon image" to color
Also moved color sprites to a resources directory.
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`);