mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-09-11 21:44:58 -04:00
Added database/sql
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
create table manf_schematic_objects
|
||||
(
|
||||
object_id number(20), -- BIND_AS(DB::BindableNetworkId)
|
||||
creator_id number, -- BIND_AS(DB::BindableNetworkId)
|
||||
creator_name varchar2(127),
|
||||
items_per_container int,
|
||||
manufacture_time float,
|
||||
draft_schematic int,
|
||||
constraint pk_manf_schematic_objects primary key (object_id)
|
||||
);
|
||||
grant select on manf_schematic_objects to public;
|
||||
Reference in New Issue
Block a user