Skip to content

Commit

Permalink
Hopefully more meaningful names for the sell/buy columns in the Price…
Browse files Browse the repository at this point in the history
… table.
  • Loading branch information
kfsone committed Aug 25, 2014
1 parent 3d969f8 commit 2f23dc9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions dataseed/dbdef.sql
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,10 @@ CREATE TABLE
item_id INTEGER NOT NULL,
station_id INTEGER NOT NULL,
ui_order INTEGER NOT NULL DEFAULT 0,
from_stn_cr INTEGER NOT NULL,
to_stn_cr INTEGER NOT NULL DEFAULT 0,
-- how many credits will the station pay for this item?
sell_to INTEGER NOT NULL,
-- how many credits must you pay to buy at this station?
buy_from INTEGER NOT NULL DEFAULT 0,
modified DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL,

PRIMARY KEY (item_id, station_id),
Expand Down

0 comments on commit 2f23dc9

Please sign in to comment.