Added database/sql

This commit is contained in:
Anonymous
2014-01-17 07:03:16 -07:00
parent 84d3709fdc
commit cf2e16dba2
570 changed files with 84897 additions and 0 deletions
@@ -0,0 +1,7 @@
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;