Bug 37601: (follow-up) DBIC schema update
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
This commit is contained in:
parent
d742e7066d
commit
e991c03119
1 changed files with 6 additions and 6 deletions
|
@ -103,8 +103,8 @@ the timestamp for when a booking has been updated
|
||||||
=head2 status
|
=head2 status
|
||||||
|
|
||||||
data_type: 'enum'
|
data_type: 'enum'
|
||||||
default_value: 'created'
|
default_value: 'new'
|
||||||
extra: {list => ["created","cancelled"]}
|
extra: {list => ["new","cancelled","completed"]}
|
||||||
is_nullable: 0
|
is_nullable: 0
|
||||||
|
|
||||||
current status of the booking
|
current status of the booking
|
||||||
|
@ -161,8 +161,8 @@ __PACKAGE__->add_columns(
|
||||||
"status",
|
"status",
|
||||||
{
|
{
|
||||||
data_type => "enum",
|
data_type => "enum",
|
||||||
default_value => "created",
|
default_value => "new",
|
||||||
extra => { list => ["created", "cancelled"] },
|
extra => { list => ["new", "cancelled", "completed"] },
|
||||||
is_nullable => 0,
|
is_nullable => 0,
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
@ -247,8 +247,8 @@ __PACKAGE__->belongs_to(
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-09-17 10:13:03
|
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-09-18 08:58:14
|
||||||
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:3v9+L1G6GK0Um3fF0t251w
|
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:3ctwNEgFUMhV+uR/UGSWag
|
||||||
|
|
||||||
|
|
||||||
# You can replace this text with custom code or comments, and it will be preserved on regeneration
|
# You can replace this text with custom code or comments, and it will be preserved on regeneration
|
||||||
|
|
Loading…
Reference in a new issue