]> git.donarmstrong.com Git - debbugs.git/commitdiff
modify bug_status_type to match what bug_presence returns
authorDon Armstrong <don@donarmstrong.com>
Mon, 7 Aug 2017 16:59:42 +0000 (09:59 -0700)
committerDon Armstrong <don@donarmstrong.com>
Mon, 7 Aug 2017 16:59:42 +0000 (09:59 -0700)
Debbugs/DB.pm
Debbugs/DB/Result/BugStatusCache.pm

index e4ec1dad446986da3580455b88fab8528e703777..4e6d3cba7477fdf20cef72ae7f4d45796338cc9b 100644 (file)
@@ -17,7 +17,7 @@ __PACKAGE__->load_namespaces;
 
 # This version must be incremented any time the schema changes so that
 # DBIx::Class::DeploymentHandler can do its work
-our $VERSION=7;
+our $VERSION=8;
 
 # You can replace this text with custom code or comments, and it will be preserved on regeneration
 
index 62acdaca04ea4163d80e064b6fd2e471f187e35b..26b850e721683c7c0381041671d1abd6e0a335d9 100644 (file)
@@ -64,7 +64,7 @@ Architecture id (matches arch)
 =head2 status
 
   data_type: 'enum'
-  extra: {custom_type_name => "bug_status_type",list => ["pending","forwarded","pending-fixed","fixed","absent","done"]}
+  extra: {custom_type_name => "bug_status_type",list => ["absent","found","fixed","undef"]}
   is_nullable: 0
 
 Status (bug status)
@@ -101,14 +101,7 @@ __PACKAGE__->add_columns(
     data_type => "enum",
     extra => {
       custom_type_name => "bug_status_type",
-      list => [
-        "pending",
-        "forwarded",
-        "pending-fixed",
-        "fixed",
-        "absent",
-        "done",
-      ],
+      list => ["absent", "found", "fixed", "undef"],
     },
     is_nullable => 0,
   },
@@ -207,8 +200,8 @@ __PACKAGE__->belongs_to(
 );
 
 
-# Created by DBIx::Class::Schema::Loader v0.07046 @ 2017-03-04 10:59:03
-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:dgaCogdpUWo99BQhdH68Mg
+# Created by DBIx::Class::Schema::Loader v0.07046 @ 2017-08-07 09:58:56
+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:RNAken/j2+82FVCyCTnvQw
 
 sub sqlt_deploy_hook {
     my ($self, $sqlt_table) = @_;