1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-07 06:55:25 +02:00

[ticket/14665] Remove invalid syntax in report_id_auto_increment migration

PHPBB3-14665
This commit is contained in:
Marc Alexander 2016-06-08 08:38:55 +02:00
parent 82649b37e4
commit a90d8fa8d4

View File

@ -38,8 +38,9 @@ class report_id_auto_increment extends \phpbb\db\migration\migration
return array(
'change_columns' => array(
$this->table_prefix . 'reports' => array(
'report_id' => array('ULINT', 0), 0),
'report_id' => array('ULINT', 0),
),
),
);
}
}