mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-14 00:01:30 -04:00
15 lines
320 B
SQL
15 lines
320 B
SQL
create table location_lists -- NO_IMPORT
|
|
(
|
|
object_id number,
|
|
list_id number,
|
|
sequence_number number,
|
|
name varchar2(255),
|
|
scene varchar2(50),
|
|
x number,
|
|
y number,
|
|
z number,
|
|
radius number,
|
|
constraint pk_location_lists primary key (object_id, list_id, sequence_number)
|
|
);
|
|
grant select on location_lists to public;
|