From 990d546512800e86862c9ce42aafeca1a82dc504 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Thu, 5 Jun 2014 10:53:13 -0400 Subject: [PATCH] Bug 12375 [2] - Update Serial schema file Signed-off-by: Paul Landers --- Koha/Schema/Result/Serial.pm | 30 +++++++++++++++++++++++++++--- 1 files changed, 27 insertions(+), 3 deletions(-) diff --git a/Koha/Schema/Result/Serial.pm b/Koha/Schema/Result/Serial.pm index db07ca1..de063d3 100644 --- a/Koha/Schema/Result/Serial.pm +++ b/Koha/Schema/Result/Serial.pm @@ -50,6 +50,24 @@ __PACKAGE__->table("serial"); is_nullable: 0 size: 100 +=head2 serialseq_x + + data_type: 'varchar' + is_nullable: 1 + size: 100 + +=head2 serialseq_y + + data_type: 'varchar' + is_nullable: 1 + size: 100 + +=head2 serialseq_z + + data_type: 'varchar' + is_nullable: 1 + size: 100 + =head2 status data_type: 'tinyint' @@ -101,6 +119,12 @@ __PACKAGE__->add_columns( { data_type => "varchar", default_value => "", is_nullable => 0, size => 100 }, "serialseq", { data_type => "varchar", default_value => "", is_nullable => 0, size => 100 }, + "serialseq_x", + { data_type => "varchar", is_nullable => 1, size => 100 }, + "serialseq_y", + { data_type => "varchar", is_nullable => 1, size => 100 }, + "serialseq_z", + { data_type => "varchar", is_nullable => 1, size => 100 }, "status", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "planneddate", @@ -147,9 +171,9 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-10-28 10:10:55 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:xscBtY2sJRoXXw7hVPTqCQ +# Created by DBIx::Class::Schema::Loader v0.07040 @ 2015-01-13 08:45:45 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:F8r3hbF7K6ZLgSFQDP9xZA -# You can replace this text with custom content, and it will be preserved on regeneration +# You can replace this text with custom code or comments, and it will be preserved on regeneration 1; -- 1.7.2.5