mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-14 00:01:30 -04:00
12 lines
245 B
SQL
12 lines
245 B
SQL
create table building_objects
|
|
(
|
|
object_id number(20), -- BIND_AS(DB::BindableNetworkId)
|
|
maintenance_cost int,
|
|
time_last_checked float,
|
|
is_public char(1),
|
|
city_id int,
|
|
primary key (object_id)
|
|
);
|
|
|
|
grant select on building_objects to public;
|