mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-09-12 22:45:02 -04:00
9 lines
331 B
SQL
9 lines
331 B
SQL
create table battlefield_participants
|
|
(
|
|
region_object_id number, -- BIND_AS(DB::BindableNetworkId)
|
|
character_object_id number, -- BIND_AS(DB::BindableNetworkId)
|
|
faction_id number,
|
|
constraint pk_battlefield_participants primary key (region_object_id, character_object_id)
|
|
);
|
|
grant select on battlefield_participants to public;
|