mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-31 01:15:48 -04:00
8 lines
284 B
SQL
8 lines
284 B
SQL
create table bounty_hunter_targets
|
|
(
|
|
object_id number(20) NOT NULL, -- BIND_AS(DB::BindableNetworkId)
|
|
target_id number(20) NOT NULL, -- BIND_AS(DB::BindableNetworkId)
|
|
constraint pk_bounty_hunter_targets primary key (object_id)
|
|
);
|
|
grant select on bounty_hunter_targets to public;
|