Bug 6739: (follow-up) update DBIC schema classes
Signed-off-by: Galen Charlton <gmc@esilibrary.com>
This commit is contained in:
parent
626f6c63a1
commit
ed30c16dc2
1 changed files with 10 additions and 2 deletions
|
@ -102,6 +102,12 @@ __PACKAGE__->table("categories");
|
|||
is_nullable: 0
|
||||
size: 1
|
||||
|
||||
=head2 blockexpiredpatronopacactions
|
||||
|
||||
data_type: 'tinyint'
|
||||
default_value: -1
|
||||
is_nullable: 0
|
||||
|
||||
=cut
|
||||
|
||||
__PACKAGE__->add_columns(
|
||||
|
@ -133,6 +139,8 @@ __PACKAGE__->add_columns(
|
|||
{ data_type => "tinyint", default_value => 0, is_nullable => 0 },
|
||||
"category_type",
|
||||
{ data_type => "varchar", default_value => "A", is_nullable => 0, size => 1 },
|
||||
"blockexpiredpatronopacactions",
|
||||
{ data_type => "tinyint", default_value => -1, is_nullable => 0 },
|
||||
);
|
||||
|
||||
=head1 PRIMARY KEY
|
||||
|
@ -225,8 +233,8 @@ __PACKAGE__->might_have(
|
|||
);
|
||||
|
||||
|
||||
# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
|
||||
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:lert5/PnaztNZ9rmoGc2Gg
|
||||
# Created by DBIx::Class::Schema::Loader v0.07025 @ 2014-05-05 02:00:18
|
||||
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:21IkmwMfRevsRHU9ezaIKg
|
||||
|
||||
|
||||
# You can replace this text with custom content, and it will be preserved on regeneration
|
||||
|
|
Loading…
Reference in a new issue