View | Details | Raw Unified | Return to bug 9805
Collapse All | Expand All

(-)a/Koha/Schema/Result/DefaultBranchCircRule.pm (-2 / +18 lines)
Lines 51-56 __PACKAGE__->table("default_branch_circ_rules"); Link Here
51
  is_nullable: 1
51
  is_nullable: 1
52
  size: 15
52
  size: 15
53
53
54
=head2 renew_lost_allowed
55
56
  data_type: 'tinyint'
57
  default_value: 1
58
  is_nullable: 0
59
60
=head2 renew_lost_found
61
62
  data_type: 'tinyint'
63
  default_value: 0
64
  is_nullable: 0
65
54
=cut
66
=cut
55
67
56
__PACKAGE__->add_columns(
68
__PACKAGE__->add_columns(
Lines 64-69 __PACKAGE__->add_columns( Link Here
64
  { data_type => "tinyint", is_nullable => 1 },
76
  { data_type => "tinyint", is_nullable => 1 },
65
  "returnbranch",
77
  "returnbranch",
66
  { data_type => "varchar", is_nullable => 1, size => 15 },
78
  { data_type => "varchar", is_nullable => 1, size => 15 },
79
  "renew_lost_allowed",
80
  { data_type => "tinyint", default_value => 1, is_nullable => 0 },
81
  "renew_lost_found",
82
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
67
);
83
);
68
84
69
=head1 PRIMARY KEY
85
=head1 PRIMARY KEY
Lines 96-103 __PACKAGE__->belongs_to( Link Here
96
);
112
);
97
113
98
114
99
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2015-05-13 17:48:39
115
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-03-14 12:54:49
100
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:p95r3cEx85NtMTEAgiRgBw
116
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:1in/TcrS3X/ryU72q/4btA
101
117
102
118
103
# You can replace this text with custom content, and it will be preserved on regeneration
119
# You can replace this text with custom content, and it will be preserved on regeneration
(-)a/Koha/Schema/Result/DefaultCircRule.pm (-3 / +18 lines)
Lines 51-56 __PACKAGE__->table("default_circ_rules"); Link Here
51
  is_nullable: 1
51
  is_nullable: 1
52
  size: 15
52
  size: 15
53
53
54
=head2 renew_lost_allowed
55
56
  data_type: 'tinyint'
57
  default_value: 1
58
  is_nullable: 0
59
60
=head2 renew_lost_found
61
62
  data_type: 'tinyint'
63
  default_value: 0
64
  is_nullable: 0
65
54
=cut
66
=cut
55
67
56
__PACKAGE__->add_columns(
68
__PACKAGE__->add_columns(
Lines 69-74 __PACKAGE__->add_columns( Link Here
69
  { data_type => "integer", is_nullable => 1 },
81
  { data_type => "integer", is_nullable => 1 },
70
  "returnbranch",
82
  "returnbranch",
71
  { data_type => "varchar", is_nullable => 1, size => 15 },
83
  { data_type => "varchar", is_nullable => 1, size => 15 },
84
  "renew_lost_allowed",
85
  { data_type => "tinyint", default_value => 1, is_nullable => 0 },
86
  "renew_lost_found",
87
  { data_type => "tinyint", default_value => 0, is_nullable => 0 },
72
);
88
);
73
89
74
=head1 PRIMARY KEY
90
=head1 PRIMARY KEY
Lines 84-91 __PACKAGE__->add_columns( Link Here
84
__PACKAGE__->set_primary_key("singleton");
100
__PACKAGE__->set_primary_key("singleton");
85
101
86
102
87
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2015-05-13 17:48:39
103
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-03-14 12:54:49
88
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:TLEpv+H3v7P3psVl+WMA0Q
104
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jBmWd6qSwc8R6XrBv/PFVg
89
105
90
106
91
# You can replace this text with custom content, and it will be preserved on regeneration
107
# You can replace this text with custom content, and it will be preserved on regeneration
92
- 

Return to bug 9805