]> git.donarmstrong.com Git - debbugs.git/blobdiff - Debbugs/DB/Result/BugPackage.pm
add initial work on sql for debbugs
[debbugs.git] / Debbugs / DB / Result / BugPackage.pm
diff --git a/Debbugs/DB/Result/BugPackage.pm b/Debbugs/DB/Result/BugPackage.pm
new file mode 100644 (file)
index 0000000..2d85e1d
--- /dev/null
@@ -0,0 +1,77 @@
+use utf8;
+package Debbugs::DB::Result::BugPackage;
+
+# Created by DBIx::Class::Schema::Loader
+# DO NOT MODIFY THE FIRST PART OF THIS FILE
+
+=head1 NAME
+
+Debbugs::DB::Result::BugPackage
+
+=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<bug_package>
+
+=cut
+
+__PACKAGE__->table("bug_package");
+
+=head1 ACCESSORS
+
+=head2 bug_id
+
+  data_type: 'integer'
+  is_nullable: 1
+
+=head2 pkg_id
+
+  data_type: 'integer'
+  is_nullable: 1
+
+=head2 pkg_type
+
+  data_type: 'text'
+  is_nullable: 1
+
+=head2 package
+
+  data_type: 'text'
+  is_nullable: 1
+
+=cut
+
+__PACKAGE__->add_columns(
+  "bug_id",
+  { data_type => "integer", is_nullable => 1 },
+  "pkg_id",
+  { data_type => "integer", is_nullable => 1 },
+  "pkg_type",
+  { data_type => "text", is_nullable => 1 },
+  "package",
+  { data_type => "text", is_nullable => 1 },
+);
+
+
+# Created by DBIx::Class::Schema::Loader v0.07025 @ 2012-07-17 21:09:18
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:4ELLjuEEq63Ca0PeqFEfsg
+
+
+# You can replace this text with custom code or comments, and it will be preserved on regeneration
+1;