mirror of
https://bitbucket.org/seefoe/dockerized-swg-src.git
synced 2026-07-28 23:16:01 -04:00
7 lines
218 B
SQL
7 lines
218 B
SQL
create table manufacture_inst_objects
|
|
(
|
|
object_id number(20), -- BIND_AS(DB::BindableNetworkId)
|
|
constraint pk_manufacture_inst_objects primary key (object_id)
|
|
);
|
|
grant select on manufacture_inst_objects to public;
|