mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-31 01:15:48 -04:00
13 lines
249 B
SQL
13 lines
249 B
SQL
create table accounts -- NO_IMPORT
|
|
(
|
|
station_id int,
|
|
num_lots int,
|
|
is_outcast char(1),
|
|
cheater_level int,
|
|
max_lots_adjustment int,
|
|
house_id number(20),
|
|
constraint pk_accounts primary key (station_id)
|
|
);
|
|
|
|
grant select on accounts to public;
|