Files
src-1.2/game/server/database/schema/manf_schematic_attributes.tab
T
2014-01-17 07:03:16 -07:00

9 lines
295 B
SQL

create table manf_schematic_attributes -- NO_IMPORT
(
object_id number(20), -- BIND_AS(DB::BindableNetworkId)
attribute_type varchar2(500),
value float,
constraint pk_manf_schematic_attributes primary key (object_id, attribute_type)
);
grant select on manf_schematic_attributes to public;