Bug 37601: (QA follow-up) Rename status 'created' as 'new' to be more consistent with other modules
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
This commit is contained in:
parent
20cf1fd7b6
commit
853c8e74b5
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ return {
|
|||
'AFTER' . ( column_exists( 'bookings', 'modification_date' ) ? q{`modification_date`} : q{`end_date`} );
|
||||
my $statement = <<~"SQL";
|
||||
ALTER TABLE `bookings`
|
||||
ADD COLUMN `status` ENUM('created', 'cancelled') NOT NULL DEFAULT 'created' COMMENT 'current status of the booking' $after;
|
||||
ADD COLUMN `status` ENUM('new', 'cancelled') NOT NULL DEFAULT 'new' COMMENT 'current status of the booking' $after;
|
||||
SQL
|
||||
if ( $dbh->do($statement) ) {
|
||||
say_success( $out, q{Added column 'bookings.status'} );
|
||||
|
|
Loading…
Reference in a new issue