Files
Mozilla/mozilla/webtools/bugzilla/oracle/makeprioritytable.sql
dkl%redhat.com 0e95761bfc Numerous fixes and improvements found once oracle bugzilla went live on May 31, 2000
git-svn-id: svn://10.0.0.236/branches/RedHat_Features_20000324_branch@71186 18797224-902f-48f8-a5cc-f745e15eee43
2000-05-31 22:22:39 +00:00

16 lines
460 B
SQL
Executable File

rem * Table to hold valid priority values in bugzilla
rem * Contributed by David Lawrence <dkl@redhat.com>
drop table priority cascade constraints;
create table priority (
value VARCHAR(255) CONSTRAINT PRIORITY_PK_VALUE PRIMARY KEY NOT NULL
);
rem insert into priority (value) values ('high');
rem insert into priority (value) values ('normal');
rem insert into priority (value) values ('low');
rem insert into priority (value) values ('contract');
exit;