mirror of
https://bitbucket.org/seefoe/dockerized-swg-src.git
synced 2026-07-15 00:08:54 -04:00
8 lines
186 B
SQL
8 lines
186 B
SQL
create table scruncher -- NO_IMPORT
|
|
(
|
|
new_object_id number(20),
|
|
old_object_id number(20),
|
|
constraint pk_scruncher primary key (old_object_id)
|
|
);
|
|
grant select on scruncher to public;
|