Lines 52-57
__PACKAGE__->table("tables_settings");
Link Here
|
52 |
is_nullable: 1 |
52 |
is_nullable: 1 |
53 |
size: 255 |
53 |
size: 255 |
54 |
|
54 |
|
|
|
55 |
=head2 default_save_state |
56 |
|
57 |
data_type: 'tinyint' |
58 |
is_nullable: 1 |
59 |
|
55 |
=cut |
60 |
=cut |
56 |
|
61 |
|
57 |
__PACKAGE__->add_columns( |
62 |
__PACKAGE__->add_columns( |
Lines 65-70
__PACKAGE__->add_columns(
Link Here
|
65 |
{ data_type => "smallint", is_nullable => 1 }, |
70 |
{ data_type => "smallint", is_nullable => 1 }, |
66 |
"default_sort_order", |
71 |
"default_sort_order", |
67 |
{ data_type => "varchar", is_nullable => 1, size => 255 }, |
72 |
{ data_type => "varchar", is_nullable => 1, size => 255 }, |
|
|
73 |
"default_save_state", |
74 |
{ data_type => "tinyint", is_nullable => 1 }, |
68 |
); |
75 |
); |
69 |
|
76 |
|
70 |
=head1 PRIMARY KEY |
77 |
=head1 PRIMARY KEY |
Lines 84-91
__PACKAGE__->add_columns(
Link Here
|
84 |
__PACKAGE__->set_primary_key("module", "page", "tablename"); |
91 |
__PACKAGE__->set_primary_key("module", "page", "tablename"); |
85 |
|
92 |
|
86 |
|
93 |
|
87 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-12-16 11:41:48 |
94 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-04-19 18:48:24 |
88 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:42x+rSLgXvSZBVLx5mh2ng |
95 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:+Bsg0TAz2CfvQ5MJsiOFRw |
89 |
|
96 |
|
90 |
|
97 |
|
91 |
# You can replace this text with custom code or comments, and it will be preserved on regeneration |
98 |
# You can replace this text with custom code or comments, and it will be preserved on regeneration |
92 |
- |
|
|