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

(-)a/Koha/Schema/Result/TablesSetting.pm (-4 / +12 lines)
Lines 55-60 __PACKAGE__->table("tables_settings"); Link Here
55
=head2 default_save_state
55
=head2 default_save_state
56
56
57
  data_type: 'tinyint'
57
  data_type: 'tinyint'
58
  default_value: 1
59
  is_nullable: 1
60
61
=head2 default_save_state_search
62
63
  data_type: 'tinyint'
64
  default_value: 0
58
  is_nullable: 1
65
  is_nullable: 1
59
66
60
=cut
67
=cut
Lines 71-77 __PACKAGE__->add_columns( Link Here
71
  "default_sort_order",
78
  "default_sort_order",
72
  { data_type => "varchar", is_nullable => 1, size => 255 },
79
  { data_type => "varchar", is_nullable => 1, size => 255 },
73
  "default_save_state",
80
  "default_save_state",
74
  { data_type => "tinyint", is_nullable => 1 },
81
  { data_type => "tinyint", default_value => 1, is_nullable => 1 },
82
  "default_save_state_search",
83
  { data_type => "tinyint", default_value => 0, is_nullable => 1 },
75
);
84
);
76
85
77
=head1 PRIMARY KEY
86
=head1 PRIMARY KEY
Lines 91-98 __PACKAGE__->add_columns( Link Here
91
__PACKAGE__->set_primary_key("module", "page", "tablename");
100
__PACKAGE__->set_primary_key("module", "page", "tablename");
92
101
93
102
94
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-04-19 18:48:24
103
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-10-03 09:24:14
95
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:+Bsg0TAz2CfvQ5MJsiOFRw
104
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:+IhbaYydX2NWPTXYCazrWg
96
105
97
106
98
# You can replace this text with custom code or comments, and it will be preserved on regeneration
107
# You can replace this text with custom code or comments, and it will be preserved on regeneration
99
- 

Return to bug 33484