]> git.donarmstrong.com Git - debbugs.git/blobdiff - Debbugs/DB/Result/Severity.pm
Switch to severity table
[debbugs.git] / Debbugs / DB / Result / Severity.pm
diff --git a/Debbugs/DB/Result/Severity.pm b/Debbugs/DB/Result/Severity.pm
new file mode 100644 (file)
index 0000000..a78b676
--- /dev/null
@@ -0,0 +1,147 @@
+use utf8;
+package Debbugs::DB::Result::Severity;
+
+# Created by DBIx::Class::Schema::Loader
+# DO NOT MODIFY THE FIRST PART OF THIS FILE
+
+=head1 NAME
+
+Debbugs::DB::Result::Severity - Bug severity
+
+=cut
+
+use strict;
+use warnings;
+
+use base 'DBIx::Class::Core';
+
+=head1 COMPONENTS LOADED
+
+=over 4
+
+=item * L<DBIx::Class::InflateColumn::DateTime>
+
+=back
+
+=cut
+
+__PACKAGE__->load_components("InflateColumn::DateTime");
+
+=head1 TABLE: C<severity>
+
+=cut
+
+__PACKAGE__->table("severity");
+
+=head1 ACCESSORS
+
+=head2 id
+
+  data_type: 'integer'
+  is_auto_increment: 1
+  is_nullable: 0
+  sequence: 'severity_id_seq'
+
+Severity id
+
+=head2 severity
+
+  data_type: 'text'
+  is_nullable: 0
+
+Severity name
+
+=head2 ordering
+
+  data_type: 'integer'
+  default_value: 5
+  is_nullable: 0
+
+Severity ordering (more severe severities have higher numbers)
+
+=head2 strong
+
+  data_type: 'boolean'
+  default_value: false
+  is_nullable: 1
+
+True if severity is a strong severity
+
+=head2 obsolete
+
+  data_type: 'boolean'
+  default_value: false
+  is_nullable: 1
+
+Whether a severity level is obsolete (should not be set on new bugs)
+
+=cut
+
+__PACKAGE__->add_columns(
+  "id",
+  {
+    data_type         => "integer",
+    is_auto_increment => 1,
+    is_nullable       => 0,
+    sequence          => "severity_id_seq",
+  },
+  "severity",
+  { data_type => "text", is_nullable => 0 },
+  "ordering",
+  { data_type => "integer", default_value => 5, is_nullable => 0 },
+  "strong",
+  { data_type => "boolean", default_value => \"false", is_nullable => 1 },
+  "obsolete",
+  { data_type => "boolean", default_value => \"false", is_nullable => 1 },
+);
+
+=head1 PRIMARY KEY
+
+=over 4
+
+=item * L</id>
+
+=back
+
+=cut
+
+__PACKAGE__->set_primary_key("id");
+
+=head1 UNIQUE CONSTRAINTS
+
+=head2 C<severity_severity_key>
+
+=over 4
+
+=item * L</severity>
+
+=back
+
+=cut
+
+__PACKAGE__->add_unique_constraint("severity_severity_key", ["severity"]);
+
+=head1 RELATIONS
+
+=head2 bug_severities
+
+Type: has_many
+
+Related object: L<Debbugs::DB::Result::BugSeverity>
+
+=cut
+
+__PACKAGE__->has_many(
+  "bug_severities",
+  "Debbugs::DB::Result::BugSeverity",
+  { "foreign.severity_id" => "self.id" },
+  { cascade_copy => 0, cascade_delete => 0 },
+);
+
+
+# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-03-22 23:19:35
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Ofel01VRzkuSKCGAU6hmMg
+
+
+# You can replace this text with custom code or comments, and it will be preserved on regeneration
+1;