Bug 19804: DBIC Schema changes
Signed-off-by: Hugo Agud <hagud@orex.es> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
This commit is contained in:
parent
e4d39fd00f
commit
ff3ca4a489
1 changed files with 10 additions and 2 deletions
|
@ -70,6 +70,12 @@ __PACKAGE__->table("issuingrules");
|
||||||
data_type: 'integer'
|
data_type: 'integer'
|
||||||
is_nullable: 1
|
is_nullable: 1
|
||||||
|
|
||||||
|
=head2 suspension_chargeperiod
|
||||||
|
|
||||||
|
data_type: 'integer'
|
||||||
|
default_value: 1
|
||||||
|
is_nullable: 1
|
||||||
|
|
||||||
=head2 firstremind
|
=head2 firstremind
|
||||||
|
|
||||||
data_type: 'integer'
|
data_type: 'integer'
|
||||||
|
@ -234,6 +240,8 @@ __PACKAGE__->add_columns(
|
||||||
{ data_type => "integer", is_nullable => 1 },
|
{ data_type => "integer", is_nullable => 1 },
|
||||||
"maxsuspensiondays",
|
"maxsuspensiondays",
|
||||||
{ data_type => "integer", is_nullable => 1 },
|
{ data_type => "integer", is_nullable => 1 },
|
||||||
|
"suspension_chargeperiod",
|
||||||
|
{ data_type => "integer", default_value => 1, is_nullable => 1 },
|
||||||
"firstremind",
|
"firstremind",
|
||||||
{ data_type => "integer", is_nullable => 1 },
|
{ data_type => "integer", is_nullable => 1 },
|
||||||
"chargeperiod",
|
"chargeperiod",
|
||||||
|
@ -313,8 +321,8 @@ __PACKAGE__->add_columns(
|
||||||
__PACKAGE__->set_primary_key("branchcode", "categorycode", "itemtype");
|
__PACKAGE__->set_primary_key("branchcode", "categorycode", "itemtype");
|
||||||
|
|
||||||
|
|
||||||
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-04-27 19:15:48
|
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2017-12-13 12:44:30
|
||||||
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:D1443VWPcoIXN3+lIkckIQ
|
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:VBD8atc/D/6rN0D+aTaSOQ
|
||||||
|
|
||||||
|
|
||||||
# You can replace this text with custom code or comments, and it will be preserved on regeneration
|
# You can replace this text with custom code or comments, and it will be preserved on regeneration
|
||||||
|
|
Loading…
Reference in a new issue