From: Don Armstrong Date: Wed, 23 Jan 2013 05:36:44 +0000 (-0800) Subject: update db::result class X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=afb6e29198afbc16f103579d0c4815f9e5fbe214;p=debbugs.git update db::result class --- diff --git a/Debbugs/DB/Result/Arch.pm b/Debbugs/DB/Result/Arch.pm index bc50ae4..c83919d 100644 --- a/Debbugs/DB/Result/Arch.pm +++ b/Debbugs/DB/Result/Arch.pm @@ -6,7 +6,7 @@ package Debbugs::DB::Result::Arch; =head1 NAME -Debbugs::DB::Result::Arch +Debbugs::DB::Result::Arch - Architectures =cut @@ -42,11 +42,15 @@ __PACKAGE__->table("arch"); is_nullable: 0 sequence: 'arch_id_seq' +Architecture id + =head2 arch data_type: 'text' is_nullable: 0 +Architecture name + =cut __PACKAGE__->add_columns( @@ -105,8 +109,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07025 @ 2012-11-23 17:41:43 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:kL57i2SauNRCt/bK6ACRKg +# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-01-22 21:35:43 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:uGFK5fZtpICxsMMtGzTgww # You can replace this text with custom code or comments, and it will be preserved on regeneration diff --git a/Debbugs/DB/Result/BinAssociation.pm b/Debbugs/DB/Result/BinAssociation.pm index 357a802..622aea7 100644 --- a/Debbugs/DB/Result/BinAssociation.pm +++ b/Debbugs/DB/Result/BinAssociation.pm @@ -6,7 +6,7 @@ package Debbugs::DB::Result::BinAssociation; =head1 NAME -Debbugs::DB::Result::BinAssociation +Debbugs::DB::Result::BinAssociation - Binary <-> suite associations =cut @@ -42,18 +42,24 @@ __PACKAGE__->table("bin_associations"); is_nullable: 0 sequence: 'bin_associations_id_seq' +Binary <-> suite association id + =head2 suite data_type: 'integer' is_foreign_key: 1 is_nullable: 0 +Suite id (matches suite) + =head2 bin data_type: 'integer' is_foreign_key: 1 is_nullable: 0 +Binary version id (matches bin_ver) + =head2 created data_type: 'timestamp with time zone' @@ -61,6 +67,8 @@ __PACKAGE__->table("bin_associations"); is_nullable: 0 original: {default_value => \"now()"} +Time this binary package entered this suite + =head2 modified data_type: 'timestamp with time zone' @@ -68,6 +76,8 @@ __PACKAGE__->table("bin_associations"); is_nullable: 0 original: {default_value => \"now()"} +Time this entry was modified + =cut __PACKAGE__->add_columns( @@ -143,8 +153,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07025 @ 2012-11-25 00:09:07 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:/cCrHn40eoiD6aOPmXU8dw +# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-01-22 21:35:43 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:6mrwiUeFTasNbK3nr0qT5g # You can replace this text with custom code or comments, and it will be preserved on regeneration diff --git a/Debbugs/DB/Result/BinPkg.pm b/Debbugs/DB/Result/BinPkg.pm index 1635c1e..985047f 100644 --- a/Debbugs/DB/Result/BinPkg.pm +++ b/Debbugs/DB/Result/BinPkg.pm @@ -6,7 +6,7 @@ package Debbugs::DB::Result::BinPkg; =head1 NAME -Debbugs::DB::Result::BinPkg +Debbugs::DB::Result::BinPkg - Binary packages =cut @@ -42,11 +42,15 @@ __PACKAGE__->table("bin_pkg"); is_nullable: 0 sequence: 'bin_pkg_id_seq' +Binary package id + =head2 pkg data_type: 'text' is_nullable: 0 +Binary package name + =cut __PACKAGE__->add_columns( @@ -120,8 +124,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07025 @ 2012-07-17 21:09:18 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:yA4czi38S+fA2P6aKn+UAw +# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-01-22 21:35:43 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:MZd5wB+mftx5babS8sAOFQ # You can replace this text with custom code or comments, and it will be preserved on regeneration diff --git a/Debbugs/DB/Result/BinVer.pm b/Debbugs/DB/Result/BinVer.pm index 0ac5745..8966d3d 100644 --- a/Debbugs/DB/Result/BinVer.pm +++ b/Debbugs/DB/Result/BinVer.pm @@ -6,7 +6,7 @@ package Debbugs::DB::Result::BinVer; =head1 NAME -Debbugs::DB::Result::BinVer +Debbugs::DB::Result::BinVer - Binary versions =cut @@ -42,29 +42,39 @@ __PACKAGE__->table("bin_ver"); is_nullable: 0 sequence: 'bin_ver_id_seq' +Binary version id + =head2 bin_pkg_id data_type: 'integer' is_foreign_key: 1 is_nullable: 0 +Binary package id (matches bin_pkg) + =head2 src_ver_id data_type: 'integer' is_foreign_key: 1 is_nullable: 0 +Source version (matchines src_ver) + =head2 arch_id data_type: 'integer' is_foreign_key: 1 is_nullable: 0 +Architecture id (matches arch) + =head2 ver data_type: 'debversion' is_nullable: 0 +Binary version + =cut __PACKAGE__->add_columns( @@ -195,8 +205,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07025 @ 2012-11-25 00:09:07 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ID7wx8HJaYZgpdhHqCq8GQ +# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-01-22 21:35:43 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9iEDj8DfMh5jdc03zs4UmQ # You can replace this text with custom code or comments, and it will be preserved on regeneration diff --git a/Debbugs/DB/Result/BugBinpackage.pm b/Debbugs/DB/Result/BugBinpackage.pm index 022994f..f63025a 100644 --- a/Debbugs/DB/Result/BugBinpackage.pm +++ b/Debbugs/DB/Result/BugBinpackage.pm @@ -6,7 +6,7 @@ package Debbugs::DB::Result::BugBinpackage; =head1 NAME -Debbugs::DB::Result::BugBinpackage +Debbugs::DB::Result::BugBinpackage - Bug <-> binary package mapping =cut @@ -41,12 +41,16 @@ __PACKAGE__->table("bug_binpackage"); is_foreign_key: 1 is_nullable: 0 +Bug id (matches bug) + =head2 bin_pkg_id data_type: 'integer' is_foreign_key: 1 is_nullable: 0 +Binary package id (matches bin_pkg) + =cut __PACKAGE__->add_columns( @@ -105,8 +109,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07025 @ 2012-07-17 21:09:18 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Nu0491VeKbUCBLaDIFAWwA +# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-01-22 21:35:43 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:2QtRdBjEVaUYmfqY7rWA6g # You can replace this text with custom code or comments, and it will be preserved on regeneration diff --git a/Debbugs/DB/Result/BugMessage.pm b/Debbugs/DB/Result/BugMessage.pm index ca6d761..d30b445 100644 --- a/Debbugs/DB/Result/BugMessage.pm +++ b/Debbugs/DB/Result/BugMessage.pm @@ -41,22 +41,37 @@ __PACKAGE__->table("bug_message"); is_foreign_key: 1 is_nullable: 0 +Bug id (matches bug) + =head2 message data_type: 'integer' is_foreign_key: 1 is_nullable: 0 +Message id (matches message) + =head2 message_number data_type: 'integer' is_nullable: 0 +Message number in the bug log + =head2 bug_log_offset data_type: 'integer' is_nullable: 1 +Byte offset in the bug log + +=head2 offset_valid + + data_type: 'timestamp with time zone' + is_nullable: 1 + +Time offset was valid + =cut __PACKAGE__->add_columns( @@ -68,6 +83,8 @@ __PACKAGE__->add_columns( { data_type => "integer", is_nullable => 0 }, "bug_log_offset", { data_type => "integer", is_nullable => 1 }, + "offset_valid", + { data_type => "timestamp with time zone", is_nullable => 1 }, ); =head1 RELATIONS @@ -103,8 +120,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07025 @ 2012-11-29 15:37:55 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:7CxTYa/jUyoOVan9Sj9MZQ +# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-01-22 21:35:43 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:WkrYUE1iE8o3fFkzQSkzeQ # You can replace this text with custom code or comments, and it will be preserved on regeneration diff --git a/Debbugs/DB/Result/BugSrcpackage.pm b/Debbugs/DB/Result/BugSrcpackage.pm index c733f17..4c07d98 100644 --- a/Debbugs/DB/Result/BugSrcpackage.pm +++ b/Debbugs/DB/Result/BugSrcpackage.pm @@ -6,7 +6,7 @@ package Debbugs::DB::Result::BugSrcpackage; =head1 NAME -Debbugs::DB::Result::BugSrcpackage +Debbugs::DB::Result::BugSrcpackage - Bug <-> source package mapping =cut @@ -41,12 +41,16 @@ __PACKAGE__->table("bug_srcpackage"); is_foreign_key: 1 is_nullable: 0 +Bug id (matches bug) + =head2 src_pkg_id data_type: 'integer' is_foreign_key: 1 is_nullable: 0 +Source package id (matches src_pkg) + =cut __PACKAGE__->add_columns( @@ -105,8 +109,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07025 @ 2012-07-17 21:09:18 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:ukA5dsM3UFiuOoDauTZN/A +# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-01-22 21:35:43 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:k8ZDk5IbnGWbhwRJ17dNXA # You can replace this text with custom code or comments, and it will be preserved on regeneration diff --git a/Debbugs/DB/Result/BugTag.pm b/Debbugs/DB/Result/BugTag.pm index ca6541f..9361bd3 100644 --- a/Debbugs/DB/Result/BugTag.pm +++ b/Debbugs/DB/Result/BugTag.pm @@ -6,7 +6,7 @@ package Debbugs::DB::Result::BugTag; =head1 NAME -Debbugs::DB::Result::BugTag +Debbugs::DB::Result::BugTag - Bug <-> tag mapping =cut @@ -41,12 +41,16 @@ __PACKAGE__->table("bug_tag"); is_foreign_key: 1 is_nullable: 0 +Bug id (matches bug) + =head2 tag_id data_type: 'integer' is_foreign_key: 1 is_nullable: 0 +Tag id (matches tag) + =cut __PACKAGE__->add_columns( @@ -105,8 +109,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07025 @ 2012-07-17 10:25:29 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:CscnquDh4dh3f4LNgRn1Ew +# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-01-22 21:35:43 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:TJLM6fzZRNQXknUuXE8Pvw # You can replace this text with custom code or comments, and it will be preserved on regeneration diff --git a/Debbugs/DB/Result/BugVer.pm b/Debbugs/DB/Result/BugVer.pm index 3b1e21e..42eb1cc 100644 --- a/Debbugs/DB/Result/BugVer.pm +++ b/Debbugs/DB/Result/BugVer.pm @@ -41,29 +41,39 @@ __PACKAGE__->table("bug_ver"); is_foreign_key: 1 is_nullable: 0 +Bug number + =head2 ver_string data_type: 'text' is_nullable: 1 +Version string + =head2 src_pkg_id data_type: 'integer' is_foreign_key: 1 is_nullable: 1 +Source package id (matches src_pkg table) + =head2 src_ver_id data_type: 'integer' is_foreign_key: 1 is_nullable: 1 +Source package version id (matches src_ver table) + =head2 found data_type: 'boolean' default_value: true is_nullable: 0 +True if this is a found version; false if this is a fixed version + =head2 creation data_type: 'timestamp with time zone' @@ -71,6 +81,8 @@ __PACKAGE__->table("bug_ver"); is_nullable: 0 original: {default_value => \"now()"} +Time that this entry was created + =head2 last_modified data_type: 'timestamp with time zone' @@ -78,6 +90,8 @@ __PACKAGE__->table("bug_ver"); is_nullable: 0 original: {default_value => \"now()"} +Time that this entry was modified + =cut __PACKAGE__->add_columns( @@ -186,8 +200,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07025 @ 2012-12-03 15:57:07 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:YRlFlDUKGtk69o3KPHM1zQ +# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-01-22 21:35:43 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:d+zLb/svrH4BgZjZXT+hdg # You can replace this text with custom code or comments, and it will be preserved on regeneration diff --git a/Debbugs/DB/Result/Message.pm b/Debbugs/DB/Result/Message.pm index 491c759..70b876d 100644 --- a/Debbugs/DB/Result/Message.pm +++ b/Debbugs/DB/Result/Message.pm @@ -6,7 +6,7 @@ package Debbugs::DB::Result::Message; =head1 NAME -Debbugs::DB::Result::Message +Debbugs::DB::Result::Message - Messages sent to bugs =cut @@ -42,59 +42,81 @@ __PACKAGE__->table("message"); is_nullable: 0 sequence: 'message_id_seq' +Message id + =head2 msgid data_type: 'text' is_nullable: 1 +Message id header + =head2 from_complete data_type: 'text' is_nullable: 1 +Complete from header of message + =head2 from_addr data_type: 'text' is_nullable: 1 +Address(es) of From: headers + =head2 to_complete data_type: 'text' is_nullable: 1 +Complete to header of message + =head2 to_addr data_type: 'text' is_nullable: 1 +Address(es) of To: header + =head2 subject data_type: 'text' default_value: (empty string) is_nullable: 0 +Subject of the message + =head2 sent_date data_type: 'timestamp with time zone' is_nullable: 1 +Time/date message was sent (from Date header) + =head2 refs data_type: 'text' default_value: (empty string) is_nullable: 0 +Contents of References: header + =head2 spam_score data_type: 'double precision' is_nullable: 1 +Spam score from spamassassin + =head2 is_spam data_type: 'boolean' default_value: false is_nullable: 1 +True if this message was spam and should not be shown + =cut __PACKAGE__->add_columns( @@ -156,17 +178,17 @@ __PACKAGE__->has_many( { cascade_copy => 0, cascade_delete => 0 }, ); -=head2 message_corespondents +=head2 message_correspondents Type: has_many -Related object: L +Related object: L =cut __PACKAGE__->has_many( - "message_corespondents", - "Debbugs::DB::Result::MessageCorespondent", + "message_correspondents", + "Debbugs::DB::Result::MessageCorrespondent", { "foreign.message" => "self.id" }, { cascade_copy => 0, cascade_delete => 0 }, ); @@ -202,8 +224,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07025 @ 2012-11-29 15:37:55 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:VkveOmRidQ9gNRBCjKyPEQ +# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-01-22 21:35:43 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:M6k3YCfOyYLnQJ+qBcoJlQ # You can replace this text with custom code or comments, and it will be preserved on regeneration diff --git a/Debbugs/DB/Result/MessageRef.pm b/Debbugs/DB/Result/MessageRef.pm index e57b1aa..5f39e43 100644 --- a/Debbugs/DB/Result/MessageRef.pm +++ b/Debbugs/DB/Result/MessageRef.pm @@ -6,7 +6,7 @@ package Debbugs::DB::Result::MessageRef; =head1 NAME -Debbugs::DB::Result::MessageRef +Debbugs::DB::Result::MessageRef - Message references =cut @@ -41,12 +41,32 @@ __PACKAGE__->table("message_refs"); is_foreign_key: 1 is_nullable: 0 +Message id (matches message) + =head2 refs data_type: 'integer' is_foreign_key: 1 is_nullable: 0 +Reference id (matches message) + +=head2 inferred + + data_type: 'boolean' + default_value: false + is_nullable: 1 + +TRUE if this message reference was reconstructed; primarily of use for messages which lack In-Reply-To: or References: headers + +=head2 primary_ref + + data_type: 'boolean' + default_value: false + is_nullable: 1 + +TRUE if this message->ref came from In-Reply-To: or similar. + =cut __PACKAGE__->add_columns( @@ -54,8 +74,28 @@ __PACKAGE__->add_columns( { data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, "refs", { data_type => "integer", is_foreign_key => 1, is_nullable => 0 }, + "inferred", + { data_type => "boolean", default_value => \"false", is_nullable => 1 }, + "primary_ref", + { data_type => "boolean", default_value => \"false", is_nullable => 1 }, ); +=head1 UNIQUE CONSTRAINTS + +=head2 C + +=over 4 + +=item * L + +=item * L + +=back + +=cut + +__PACKAGE__->add_unique_constraint("message_refs_message_refs_idx", ["message", "refs"]); + =head1 RELATIONS =head2 message @@ -89,8 +129,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07025 @ 2012-11-29 15:37:55 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:uCScDuC5TprnuyEjg25eXg +# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-01-22 21:35:43 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:qPL3EsH3iVrcwJKRNVzTEQ # You can replace this text with custom code or comments, and it will be preserved on regeneration diff --git a/Debbugs/DB/Result/SrcAssociation.pm b/Debbugs/DB/Result/SrcAssociation.pm index b69a98e..0496a64 100644 --- a/Debbugs/DB/Result/SrcAssociation.pm +++ b/Debbugs/DB/Result/SrcAssociation.pm @@ -6,7 +6,7 @@ package Debbugs::DB::Result::SrcAssociation; =head1 NAME -Debbugs::DB::Result::SrcAssociation +Debbugs::DB::Result::SrcAssociation - Source <-> suite associations =cut @@ -42,18 +42,24 @@ __PACKAGE__->table("src_associations"); is_nullable: 0 sequence: 'src_associations_id_seq' +Source <-> suite association id + =head2 suite data_type: 'integer' is_foreign_key: 1 is_nullable: 0 +Suite id (matches suite) + =head2 source data_type: 'integer' is_foreign_key: 1 is_nullable: 0 +Source version id (matches src_ver) + =head2 created data_type: 'timestamp with time zone' @@ -61,6 +67,8 @@ __PACKAGE__->table("src_associations"); is_nullable: 0 original: {default_value => \"now()"} +Time this source package entered this suite + =head2 modified data_type: 'timestamp with time zone' @@ -68,6 +76,8 @@ __PACKAGE__->table("src_associations"); is_nullable: 0 original: {default_value => \"now()"} +Time this entry was modified + =cut __PACKAGE__->add_columns( @@ -143,8 +153,8 @@ __PACKAGE__->belongs_to( ); -# Created by DBIx::Class::Schema::Loader v0.07025 @ 2012-11-25 00:09:07 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:wa7w7q9pWea8Td3wJ7c1FQ +# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-01-22 21:35:43 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:KLRKATys7SUGy+1bmADToQ # You can replace this text with custom code or comments, and it will be preserved on regeneration diff --git a/Debbugs/DB/Result/Suite.pm b/Debbugs/DB/Result/Suite.pm index ba9b216..fdfab37 100644 --- a/Debbugs/DB/Result/Suite.pm +++ b/Debbugs/DB/Result/Suite.pm @@ -6,7 +6,7 @@ package Debbugs::DB::Result::Suite; =head1 NAME -Debbugs::DB::Result::Suite +Debbugs::DB::Result::Suite - Debian Release Suite (stable, testing, etc.) =cut @@ -42,27 +42,37 @@ __PACKAGE__->table("suite"); is_nullable: 0 sequence: 'suite_id_seq' +Suite id + =head2 suite_name data_type: 'text' is_nullable: 0 +Suite name + =head2 version data_type: 'text' is_nullable: 1 +Suite version; NULL if there is no appropriate version + =head2 codename data_type: 'text' is_nullable: 1 +Suite codename + =head2 active data_type: 'boolean' default_value: true is_nullable: 1 +TRUE if the suite is still accepting uploads + =cut __PACKAGE__->add_columns( @@ -142,8 +152,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07025 @ 2012-11-25 00:09:07 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:XTRTAvkuZCBlDB6tSQXDDQ +# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-01-22 21:35:43 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:1NiRLPvDC3xRPr7+fbzp/w # You can replace this text with custom code or comments, and it will be preserved on regeneration diff --git a/Debbugs/DB/Result/Tag.pm b/Debbugs/DB/Result/Tag.pm index 567c2b5..cdcef2c 100644 --- a/Debbugs/DB/Result/Tag.pm +++ b/Debbugs/DB/Result/Tag.pm @@ -6,7 +6,7 @@ package Debbugs::DB::Result::Tag; =head1 NAME -Debbugs::DB::Result::Tag +Debbugs::DB::Result::Tag - Bug tags =cut @@ -42,17 +42,23 @@ __PACKAGE__->table("tag"); is_nullable: 0 sequence: 'tag_id_seq' +Tag id + =head2 tag data_type: 'text' is_nullable: 0 +Tag name + =head2 obsolete data_type: 'boolean' default_value: false is_nullable: 1 +Whether a tag is obsolete (should not be set on new bugs) + =cut __PACKAGE__->add_columns( @@ -113,8 +119,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07025 @ 2012-07-17 21:09:18 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:4ea1AINoa4KQxMnX4oZwmA +# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-01-22 21:35:43 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:JNPrdP77YEkirbzdASjcKw # You can replace this text with custom code or comments, and it will be preserved on regeneration