mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-31 01:15:48 -04:00
9 lines
215 B
SQL
9 lines
215 B
SQL
create table delete_reasons -- NO_IMPORT
|
|
(
|
|
reason_code number,
|
|
tag varchar2(100),
|
|
description varchar2(1000),
|
|
constraint pk_delete_reasons primary key (reason_code)
|
|
);
|
|
grant select on delete_reasons to public;
|