mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-14 00:01:30 -04:00
8 lines
192 B
SQL
8 lines
192 B
SQL
create table factory_objects
|
|
(
|
|
object_id number(20), -- BIND_AS(DB::BindableNetworkId)
|
|
constraint pk_factory_objects primary key (object_id)
|
|
);
|
|
|
|
grant select on factory_objects to public;
|