mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-14 00:01:30 -04:00
11 lines
315 B
SQL
11 lines
315 B
SQL
create table resource_container_objects
|
|
(
|
|
object_id number(20), -- BIND_AS(DB::BindableNetworkId)
|
|
resource_type number(20), -- BIND_AS(DB::BindableNetworkId)
|
|
quantity int,
|
|
source number(20), -- BIND_AS(DB::BindableNetworkId)
|
|
primary key (object_id)
|
|
);
|
|
|
|
grant select on resource_container_objects to public;
|