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

(-)a/Koha/Schema/Result/Currency.pm (-3 / +10 lines)
Lines 72-77 __PACKAGE__->table("currency"); Link Here
72
  default_value: 0
72
  default_value: 0
73
  is_nullable: 1
73
  is_nullable: 1
74
74
75
=head2 p_cs_precedes
76
77
  data_type: 'tinyint'
78
  default_value: 1
79
  is_nullable: 0
80
75
=cut
81
=cut
76
82
77
__PACKAGE__->add_columns(
83
__PACKAGE__->add_columns(
Lines 96-101 __PACKAGE__->add_columns( Link Here
96
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
102
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
97
  "p_sep_by_space",
103
  "p_sep_by_space",
98
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
104
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
105
  "p_cs_precedes",
106
  { data_type => "tinyint", default_value => 1, is_nullable => 0 },
99
);
107
);
100
108
101
=head1 PRIMARY KEY
109
=head1 PRIMARY KEY
Lines 173-180 __PACKAGE__->has_many( Link Here
173
);
181
);
174
182
175
183
176
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-03-06 16:45:06
184
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-10-01 10:59:15
177
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:FmTABTXRmT/kwlkKkO/0pw
185
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:C7BtR3ceUVovrYitKh55bA
178
186
179
187
180
sub koha_object_class {
188
sub koha_object_class {
181
- 

Return to bug 37511