mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-28 23:16:15 -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;
|