Files
src-1.2/game/server/database/schema/installation_objects.tab
T
2014-01-17 07:03:16 -07:00

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;