Bug 20144: [sql_modes] Shorten auth_header.authtypecode values in tests
Fix for: Data too long for column 'authtypecode' 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
db181fd8e1
commit
d43eb8b19c
1 changed files with 2 additions and 2 deletions
|
@ -286,9 +286,9 @@ sub construct_objects_needed {
|
|||
(authtypecode, marcxml)
|
||||
VALUES (?, "")';
|
||||
$insert_sth = $dbh->prepare($query);
|
||||
$insert_sth->execute('authtypecode1');
|
||||
$insert_sth->execute('atc1');
|
||||
my $authid1 = $dbh->last_insert_id( undef, undef, 'auth_header', undef );
|
||||
$insert_sth->execute('authtypecode2');
|
||||
$insert_sth->execute('atc2');
|
||||
my $authid2 = $dbh->last_insert_id( undef, undef, 'auth_header', undef );
|
||||
|
||||
# ---------- Add 1 old_issues
|
||||
|
|
Loading…
Reference in a new issue