Skip to content

Commit

Permalink
Fixed over zealous CHECK on station.csv
Browse files Browse the repository at this point in the history
  • Loading branch information
kfsone committed Dec 26, 2014
1 parent 96d6e87 commit 34bd2c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/TradeDangerous.sql
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ CREATE TABLE Station
name VARCHAR(40) COLLATE nocase,
system_id INTEGER NOT NULL,
ls_from_star INTEGER NOT NULL DEFAULT 0
CHECK (ls_from_star > 0),
CHECK (ls_from_star >= 0),
blackmarket TEXT(1) NOT NULL DEFAULT '?'
CHECK (blackmarket IN ('?', 'Y', 'N')),
max_pad_size TEXT(1) NOT NULL DEFAULT '?'
Expand Down

0 comments on commit 34bd2c5

Please sign in to comment.