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

(-)a/Koha/Schema/Result/Currency.pm (-3 / +10 lines)
Lines 66-71 __PACKAGE__->table("currency"); Link Here
66
  default_value: 0
66
  default_value: 0
67
  is_nullable: 1
67
  is_nullable: 1
68
68
69
=head2 p_sep_by_space
70
71
  data_type: 'tinyint'
72
  default_value: 0
73
  is_nullable: 1
74
69
=cut
75
=cut
70
76
71
__PACKAGE__->add_columns(
77
__PACKAGE__->add_columns(
Lines 88-93 __PACKAGE__->add_columns( Link Here
88
  { data_type => "tinyint", is_nullable => 1 },
94
  { data_type => "tinyint", is_nullable => 1 },
89
  "archived",
95
  "archived",
90
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
96
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
97
  "p_sep_by_space",
98
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
91
);
99
);
92
100
93
=head1 PRIMARY KEY
101
=head1 PRIMARY KEY
Lines 150-157 __PACKAGE__->has_many( Link Here
150
);
158
);
151
159
152
160
153
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-03-09 15:14:35
161
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-01 14:23:58
154
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:0xP1adf+TPUi2cBn8Qah5A
162
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:PnJEcCgrM1Edf99phWFdyQ
155
163
156
164
157
# You can replace this text with custom content, and it will be preserved on regeneration
165
# You can replace this text with custom content, and it will be preserved on regeneration
158
- 

Return to bug 4078