Bugzilla – Attachment 171381 Details for
Bug 37601
Add status field to bookings table
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 37601: (follow-up) Change updated_at to updated_on in accordance with Bug 37592
Bug-37601-follow-up-Change-updatedat-to-updatedon-.patch (text/plain), 1.50 KB, created by
Martin Renvoize (ashimema)
on 2024-09-12 11:06:20 UTC
(
hide
)
Description:
Bug 37601: (follow-up) Change updated_at to updated_on in accordance with Bug 37592
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2024-09-12 11:06:20 UTC
Size:
1.50 KB
patch
obsolete
>From cea418f562be9386693ed612f130584dc7ada79f Mon Sep 17 00:00:00 2001 >From: Paul Derscheid <paul.derscheid@lmscloud.de> >Date: Tue, 27 Aug 2024 13:44:10 +0200 >Subject: [PATCH] Bug 37601: (follow-up) Change updated_at to updated_on in > accordance with Bug 37592 > >Signed-off-by: LEBSimonsen <simonsen@bz-sh.de> >Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> >--- > .../bug_37601-add-status-field-to-bookings-table.pl | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > mode change 100644 => 100755 installer/data/mysql/atomicupdate/bug_37601-add-status-field-to-bookings-table.pl > >diff --git a/installer/data/mysql/atomicupdate/bug_37601-add-status-field-to-bookings-table.pl b/installer/data/mysql/atomicupdate/bug_37601-add-status-field-to-bookings-table.pl >old mode 100644 >new mode 100755 >index 24789a9f723..3fe0fa8c6ab >--- a/installer/data/mysql/atomicupdate/bug_37601-add-status-field-to-bookings-table.pl >+++ b/installer/data/mysql/atomicupdate/bug_37601-add-status-field-to-bookings-table.pl >@@ -14,7 +14,7 @@ return { > return; > } > >- my $after = 'AFTER' . ( column_exists( 'bookings', 'updated_at' ) ? q{`updated_at`} : q{`end_date`} ); >+ my $after = 'AFTER' . ( column_exists( 'bookings', 'updated_on' ) ? q{`updated_on`} : 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; >-- >2.46.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 37601
:
170260
|
170767
|
171241
|
171380
| 171381 |
171382
|
171526
|
171527
|
171528
|
171653
|
171654
|
171655