mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-14 00:01:30 -04:00
13 lines
294 B
SQL
13 lines
294 B
SQL
create table installation_objects
|
|
(
|
|
object_id number(20), -- BIND_AS(DB::BindableNetworkId)
|
|
installation_type int,
|
|
activated char(1),
|
|
tick_count float,
|
|
activate_start_time float,
|
|
power float,
|
|
power_rate float,
|
|
primary key (object_id)
|
|
);
|
|
grant select on installation_objects to public;
|