Files
2014-01-17 07:03:16 -07:00

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;