mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 20:38:52 +00:00
Merge branch '3.2.x'
* 3.2.x: [ticket/14665] Remove invalid syntax in report_id_auto_increment migration
This commit is contained in:
commit
c2860cbabb
1 changed files with 2 additions and 1 deletions
|
@ -38,7 +38,8 @@ class report_id_auto_increment extends \phpbb\db\migration\migration
|
||||||
return array(
|
return array(
|
||||||
'change_columns' => array(
|
'change_columns' => array(
|
||||||
$this->table_prefix . 'reports' => array(
|
$this->table_prefix . 'reports' => array(
|
||||||
'report_id' => array('ULINT', 0), 0),
|
'report_id' => array('ULINT', 0),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue