git-svn-id: svn://10.0.0.236/branches/RedHat_Features_20000324_branch@71186 18797224-902f-48f8-a5cc-f745e15eee43
16 lines
460 B
SQL
Executable File
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;
|