@@ -, +, @@ --- Koha/Schema/Result/Serial.pm | 30 +++++++++++++++++++++++++++--- 1 files changed, 27 insertions(+), 3 deletions(-) --- a/Koha/Schema/Result/Serial.pm +++ a/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; --