3
# The contents of this file are subject to the Mozilla Public License
4
# Version 1.0 (the "License"); you may not use this file except in
5
# compliance with the License. You may obtain a copy of the License at
6
# http://www.mozilla.org/MPL/
8
# Software distributed under the License is distributed on an "AS IS"
9
# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
10
# License for the specific language governing rights and limitations
13
# The Original Code is the Bugzilla Bug Tracking System.
15
# The Initial Developer of the Original Code is Netscape Communications
16
# Corporation. Portions created by Netscape are Copyright (C) 1998
17
# Netscape Communications Corporation. All Rights Reserved.
19
# Contributor(s): Terry Weissman <terry@mozilla.org>
21
mysql > /dev/null 2>/dev/null << OK_ALL_DONE
31
bug_id mediumint not null auto_increment primary key,
32
assigned_to mediumint not null, # This is a comment.
34
bug_severity enum("critical", "major", "normal", "minor", "trivial", "enhancement") not null,
35
bug_status enum("NEW", "ASSIGNED", "REOPENED", "RESOLVED", "VERIFIED", "CLOSED") not null,
38
short_desc mediumtext,
41
priority enum("P1", "P2", "P3", "P4", "P5") not null,
42
product varchar(16) not null,
43
rep_platform enum("All", "DEC", "HP", "Macintosh", "PC", "SGI", "Sun", "X-Windows", "Other"),
44
reporter mediumint not null,
45
version varchar(16) not null,
46
area enum("BUILD", "CODE", "CONTENT", "DOC", "PERFORMANCE", "TEST", "UI", "i18n", "l10n") not null,
47
component varchar(50) not null,
48
resolution enum("", "FIXED", "INVALID", "WONTFIX", "LATER", "REMIND", "DUPLICATE", "WORKSFORME") not null,
65
show columns from bugs;