mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-14 00:01:30 -04:00
10 lines
233 B
SQL
10 lines
233 B
SQL
create table loadbeacon_server_map
|
|
(
|
|
object_template varchar2(255),
|
|
server_id int,
|
|
secondary_server_id int,
|
|
constraint pk_loadbeacon_server_map primary key (object_template)
|
|
);
|
|
|
|
grant select on loadbeacon_server_map to public;
|