mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-14 00:01:30 -04:00
11 lines
374 B
SQL
11 lines
374 B
SQL
create table auction_locations
|
|
(
|
|
owner_id number(20), -- BIND_AS(DB::BindableNetworkId)
|
|
owner_name varchar2(64),
|
|
location_name varchar2(256),
|
|
constraint pk_auction_locations primary key (location_name) using index tablespace indexes
|
|
);
|
|
grant select on auction_locations to public;
|
|
|
|
update version_number set version_number=68, min_version_number=68;
|