Lines 123-128
__PACKAGE__->table("categories");
Link Here
|
123 |
is_nullable: 0 |
123 |
is_nullable: 0 |
124 |
size: 7 |
124 |
size: 7 |
125 |
|
125 |
|
|
|
126 |
=head2 quick_add_display |
127 |
|
128 |
data_type: 'tinyint' |
129 |
default_value: 1 |
130 |
is_nullable: 0 |
131 |
|
126 |
=cut |
132 |
=cut |
127 |
|
133 |
|
128 |
__PACKAGE__->add_columns( |
134 |
__PACKAGE__->add_columns( |
Lines 175-180
__PACKAGE__->add_columns(
Link Here
|
175 |
is_nullable => 0, |
181 |
is_nullable => 0, |
176 |
size => 7, |
182 |
size => 7, |
177 |
}, |
183 |
}, |
|
|
184 |
"quick_add_display", |
185 |
{ data_type => "tinyint", default_value => 1, is_nullable => 0 }, |
178 |
); |
186 |
); |
179 |
|
187 |
|
180 |
=head1 PRIMARY KEY |
188 |
=head1 PRIMARY KEY |
Lines 267-274
__PACKAGE__->might_have(
Link Here
|
267 |
); |
275 |
); |
268 |
|
276 |
|
269 |
|
277 |
|
270 |
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-16 17:54:53 |
278 |
# Created by DBIx::Class::Schema::Loader v0.07045 @ 2018-04-04 12:38:48 |
271 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:TGAiiFICSjlKNvnfa87kFQ |
279 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:04yaP2Mr29CsaK7XCbgG+g |
272 |
|
280 |
|
273 |
__PACKAGE__->add_columns( |
281 |
__PACKAGE__->add_columns( |
274 |
'+quick_add_display' => { is_boolean => 1 }, |
282 |
'+quick_add_display' => { is_boolean => 1 }, |
275 |
- |
|
|