]> ruin.nu Git - ndwebbie.git/blob - database/tables/races.sql
Updates for round 100
[ndwebbie.git] / database / tables / races.sql
1 CREATE TABLE IF NOT EXISTS races (
2         race_id INTEGER UNIQUE NOT NULL,
3         race TEXT PRIMARY KEY,
4         race_name TEXT UNIQUE NOT NULL,
5         max_stealth INTEGER NOT NULL,
6         stealth_growth INTEGER NOT NULL,
7         base_construction INTEGER NOT NULL,
8         base_research INTEGER NOT NULL,
9         production_time INTEGER NOT NULL,
10         salvage INTEGER NOT NULL,
11         universe_trade_tax INTEGER NOT NULL
12 );