mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-14 00:01:30 -04:00
19 lines
529 B
SQL
19 lines
529 B
SQL
create table counting_objects
|
|
(
|
|
object_id number(20), -- BIND_AS(DB::BindableNetworkId)
|
|
count int,
|
|
constraint pk_counting_objects primary key (object_id) using index tablespace indexes
|
|
);
|
|
|
|
grant select on counting_objects to public;
|
|
|
|
create table factory_objects
|
|
(
|
|
object_id number(20), -- BIND_AS(DB::BindableNetworkId)
|
|
constraint pk_factory_objects primary key (object_id) using index tablespace indexes
|
|
);
|
|
|
|
grant select on factory_objects to public;
|
|
|
|
update version_number set version_number=60, min_version_number=60;
|