mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-28 23:16:15 -04:00
10 lines
240 B
SQL
10 lines
240 B
SQL
create table property_lists
|
|
(
|
|
object_id number(20), -- BIND_AS(DB::BindableNetworkId)
|
|
list_id int,
|
|
value varchar2(500),
|
|
constraint pk_property_lists primary key (object_id, list_id, value)
|
|
);
|
|
|
|
grant select on property_lists to public;
|