mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-14 00:01:30 -04:00
10 lines
193 B
SQL
10 lines
193 B
SQL
create table cell_objects
|
|
(
|
|
object_id number(20), -- BIND_AS(DB::BindableNetworkId)
|
|
cell_number int,
|
|
is_public char(1),
|
|
primary key (object_id)
|
|
);
|
|
|
|
grant select on cell_objects to public;
|