Issue #2981248 by mfb, LFP6, msti: MySQL 5.7 incompatibility in system upgrade 7061

merge-requests/26/head
Pol Dellaiera 2019-01-03 00:21:49 +01:00
parent 9f0d39e9ae
commit 56a02cab38
No known key found for this signature in database
GPG Key ID: 326683691C3250DB
1 changed files with 1 additions and 1 deletions

View File

@ -2870,7 +2870,7 @@ function system_update_7061(&$sandbox) {
if (!db_table_exists('system_update_7061')) {
$table = array(
'description' => t('Stores temporary data for system_update_7061.'),
'fields' => array('vid' => array('type' => 'int')),
'fields' => array('vid' => array('type' => 'int', 'not null' => TRUE)),
'primary key' => array('vid'),
);
db_create_table('system_update_7061', $table);