Bugzilla – Attachment 174971 Details for
Bug 37592
Add a record of creation and modification to bookings
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 37592: (Follow-up) Fix timestamp vs datetime in db_rev
Bug-37592-Follow-up-Fix-timestamp-vs-datetime-in-d.patch (text/plain), 1.54 KB, created by
Martin Renvoize (ashimema)
on 2024-11-25 13:10:05 UTC
(
hide
)
Description:
Bug 37592: (Follow-up) Fix timestamp vs datetime in db_rev
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2024-11-25 13:10:05 UTC
Size:
1.54 KB
patch
obsolete
>From 2882a7461300369005a23ba1487eba73cb32f061 Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Mon, 25 Nov 2024 13:09:08 +0000 >Subject: [PATCH] Bug 37592: (Follow-up) Fix timestamp vs datetime in db_rev > >--- > installer/data/mysql/db_revs/240600029.pl | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/installer/data/mysql/db_revs/240600029.pl b/installer/data/mysql/db_revs/240600029.pl >index 863f9bf2932..9fa86ba00b4 100644 >--- a/installer/data/mysql/db_revs/240600029.pl >+++ b/installer/data/mysql/db_revs/240600029.pl >@@ -25,10 +25,10 @@ return { > } > > my $creation_date_statement = <<~'SQL'; >- ALTER TABLE bookings ADD COLUMN creation_date DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL COMMENT 'the datetime for when a bookings was created' >+ ALTER TABLE bookings ADD COLUMN creation_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL COMMENT 'the datetime for when a bookings was created' > SQL > my $modification_date_statement = <<~'SQL'; >- ALTER TABLE bookings ADD COLUMN modification_date DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT 'the datetime for when a booking has been updated' >+ ALTER TABLE bookings ADD COLUMN modification_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL ON UPDATE CURRENT_TIMESTAMP COMMENT 'the datetime for when a booking has been updated' > SQL > if ( @{$existing_columns} == 0 ) { > $dbh->do("$creation_date_statement AFTER `end_date`"); >-- >2.47.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 37592
:
170144
|
170161
|
170763
|
171254
|
171376
|
171377
|
171378
|
171524
|
171645
|
174968
|
174969
|
174970
|
174971
|
174972
|
174973