aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/db
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2016-06-08 08:38:55 +0200
committerMarc Alexander <admin@m-a-styles.de>2016-06-08 08:38:55 +0200
commita90d8fa8d475010c45b1bca1fd9c279a9eb42fac (patch)
tree5770efe56680caedbcf87a55469bf325cb33a12a /phpBB/phpbb/db
parent82649b37e461b3a2701fd6bfef88167017d2c3b6 (diff)
downloadforums-a90d8fa8d475010c45b1bca1fd9c279a9eb42fac.tar
forums-a90d8fa8d475010c45b1bca1fd9c279a9eb42fac.tar.gz
forums-a90d8fa8d475010c45b1bca1fd9c279a9eb42fac.tar.bz2
forums-a90d8fa8d475010c45b1bca1fd9c279a9eb42fac.tar.xz
forums-a90d8fa8d475010c45b1bca1fd9c279a9eb42fac.zip
[ticket/14665] Remove invalid syntax in report_id_auto_increment migration
PHPBB3-14665
Diffstat (limited to 'phpBB/phpbb/db')
-rw-r--r--phpBB/phpbb/db/migration/data/v320/report_id_auto_increment.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/phpbb/db/migration/data/v320/report_id_auto_increment.php b/phpBB/phpbb/db/migration/data/v320/report_id_auto_increment.php
index c40504051e..6e81baefb9 100644
--- a/phpBB/phpbb/db/migration/data/v320/report_id_auto_increment.php
+++ b/phpBB/phpbb/db/migration/data/v320/report_id_auto_increment.php
@@ -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),
),
+ ),
);
}
}