|
Lines 32-39
__PACKAGE__->table("branch_hours");
Link Here
|
| 32 |
|
32 |
|
| 33 |
=head2 day |
33 |
=head2 day |
| 34 |
|
34 |
|
| 35 |
data_type: 'integer' |
35 |
data_type: 'enum' |
| 36 |
default_value: 0 |
36 |
default_value: 0 |
|
|
37 |
extra: {list => [0,1,2,3,4,5,6]} |
| 37 |
is_nullable: 0 |
38 |
is_nullable: 0 |
| 38 |
|
39 |
|
| 39 |
=head2 open_time |
40 |
=head2 open_time |
|
Lines 52-58
__PACKAGE__->add_columns(
Link Here
|
| 52 |
"branchcode", |
53 |
"branchcode", |
| 53 |
{ data_type => "varchar", is_foreign_key => 1, is_nullable => 0, size => 10 }, |
54 |
{ data_type => "varchar", is_foreign_key => 1, is_nullable => 0, size => 10 }, |
| 54 |
"day", |
55 |
"day", |
| 55 |
{ data_type => "integer", default_value => 0, is_nullable => 0 }, |
56 |
{ |
|
|
57 |
data_type => "enum", |
| 58 |
default_value => 0, |
| 59 |
extra => { list => [0 .. 6] }, |
| 60 |
is_nullable => 0, |
| 61 |
}, |
| 56 |
"open_time", |
62 |
"open_time", |
| 57 |
{ data_type => "time", is_nullable => 1 }, |
63 |
{ data_type => "time", is_nullable => 1 }, |
| 58 |
"close_time", |
64 |
"close_time", |
|
Lines 91-98
__PACKAGE__->belongs_to(
Link Here
|
| 91 |
); |
97 |
); |
| 92 |
|
98 |
|
| 93 |
|
99 |
|
| 94 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-04-30 22:45:00 |
100 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-05-01 22:16:59 |
| 95 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:SbjA0aSMKcRwFodmHRhKpg |
101 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:WYce1PbJEaslfco4Hh5xUA |
| 96 |
|
102 |
|
| 97 |
|
103 |
|
| 98 |
# You can replace this text with custom code or comments, and it will be preserved on regeneration |
104 |
# You can replace this text with custom code or comments, and it will be preserved on regeneration |
| 99 |
- |
|
|