Lines 44-51
__PACKAGE__->table("tables_settings");
Link Here
|
44 |
=head2 default_display_length |
44 |
=head2 default_display_length |
45 |
|
45 |
|
46 |
data_type: 'smallint' |
46 |
data_type: 'smallint' |
47 |
default_value: 20 |
47 |
is_nullable: 1 |
48 |
is_nullable: 0 |
|
|
49 |
|
48 |
|
50 |
=head2 default_sort_order |
49 |
=head2 default_sort_order |
51 |
|
50 |
|
Lines 63-69
__PACKAGE__->add_columns(
Link Here
|
63 |
"tablename", |
62 |
"tablename", |
64 |
{ data_type => "varchar", is_nullable => 0, size => 255 }, |
63 |
{ data_type => "varchar", is_nullable => 0, size => 255 }, |
65 |
"default_display_length", |
64 |
"default_display_length", |
66 |
{ data_type => "smallint", default_value => 20, is_nullable => 0 }, |
65 |
{ data_type => "smallint", is_nullable => 1 }, |
67 |
"default_sort_order", |
66 |
"default_sort_order", |
68 |
{ data_type => "varchar", is_nullable => 1, size => 255 }, |
67 |
{ data_type => "varchar", is_nullable => 1, size => 255 }, |
69 |
); |
68 |
); |
Lines 85-92
__PACKAGE__->add_columns(
Link Here
|
85 |
__PACKAGE__->set_primary_key("module", "page", "tablename"); |
84 |
__PACKAGE__->set_primary_key("module", "page", "tablename"); |
86 |
|
85 |
|
87 |
|
86 |
|
88 |
# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-12-10 17:22:41 |
87 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2021-12-16 11:41:48 |
89 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:A2GDoSG702QYDH8nYPEJ2Q |
88 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:42x+rSLgXvSZBVLx5mh2ng |
90 |
|
89 |
|
91 |
|
90 |
|
92 |
# You can replace this text with custom code or comments, and it will be preserved on regeneration |
91 |
# You can replace this text with custom code or comments, and it will be preserved on regeneration |
93 |
- |
|
|