mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-14 00:01:30 -04:00
11 lines
279 B
SQL
11 lines
279 B
SQL
create table object_variables -- NO_IMPORT
|
|
(
|
|
object_id number(20), -- BIND_AS(DB::BindableNetworkId)
|
|
name_id number,
|
|
type int,
|
|
value varchar(1000),
|
|
detached int,
|
|
constraint pk_object_variables primary key (object_id,name_id)
|
|
);
|
|
grant select on object_variables to public;
|