mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-14 00:01:30 -04:00
11 lines
356 B
SQL
11 lines
356 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;
|
|
|
|
update version_number set version_number=180, min_version_number=180;
|
|
|