mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-31 01:15:48 -04:00
10 lines
230 B
SQL
10 lines
230 B
SQL
create table publish_player_fixup --NO_IMPORT
|
|
(
|
|
player_object_id number(20),
|
|
x number,
|
|
y number,
|
|
z number,
|
|
constraint pk_publish_player_fixup primary key (player_object_id)
|
|
);
|
|
grant select on publish_player_fixup to public;
|