mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-30 00:15:47 -04:00
8 lines
289 B
SQL
8 lines
289 B
SQL
create table schematic_templates
|
|
(
|
|
schematic_id number(20) NOT NULL, -- BIND_AS(DB::BindableNetworkId)
|
|
object_template_id number NOT NULL, -- BIND_AS(DB::BindableNetworkId)
|
|
constraint pk_schematic_templates primary key (schematic_id)
|
|
);
|
|
grant select on schematic_templates to public;
|