mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-14 00:01:30 -04:00
9 lines
295 B
SQL
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;
|