Bug 20144: [sql_modes] Set value for creator_batches.timestamp
Fix for: Incorrect datetime value: 'now()' for column 'timestamp' Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Signed-off-by: Julian Maurice <julian.maurice@biblibre.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
This commit is contained in:
parent
b8f0a3fc40
commit
cf26f1f41f
1 changed files with 4 additions and 4 deletions
|
@ -238,13 +238,13 @@ $query = '
|
|||
INSERT INTO creator_batches
|
||||
(batch_id , item_number, borrower_number,
|
||||
timestamp, branch_code, creator)
|
||||
VALUES (?,?,?,?,?,?)';
|
||||
VALUES (?,?,?,NOW(),?,?)';
|
||||
$insert_sth = $dbh->prepare($query);
|
||||
$insert_sth->execute( 11, $item_number1, $borrowernumber1, 'now()', $library1->{branchcode}, 'Labels' );
|
||||
$insert_sth->execute( 11, $item_number1, $borrowernumber1, $library1->{branchcode}, 'Labels' );
|
||||
|
||||
$insert_sth->execute( 12, $item_number2, $borrowernumber2, 'now()', $library2->{branchcode}, 'Labels' );
|
||||
$insert_sth->execute( 12, $item_number2, $borrowernumber2, $library2->{branchcode}, 'Labels' );
|
||||
|
||||
$insert_sth->execute( 12, $item_number3, $borrowernumber3, 'now()', $library3->{branchcode}, 'Labels' );
|
||||
$insert_sth->execute( 12, $item_number3, $borrowernumber3, $library3->{branchcode}, 'Labels' );
|
||||
|
||||
###########################################################
|
||||
# Testing Subs
|
||||
|
|
Loading…
Reference in a new issue