diff options
author | Tristan Darricau <github@nicofuma.fr> | 2014-08-07 14:16:57 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2014-08-07 14:16:57 +0200 |
commit | 27b4ab92414c42345f6737890051268f082ffc81 (patch) | |
tree | 94296a998c7b0979c4d94e9e302ba9453e448105 /phpBB | |
parent | 919aeb387929a4b775024914eed95207111791b0 (diff) | |
download | forums-27b4ab92414c42345f6737890051268f082ffc81.tar forums-27b4ab92414c42345f6737890051268f082ffc81.tar.gz forums-27b4ab92414c42345f6737890051268f082ffc81.tar.bz2 forums-27b4ab92414c42345f6737890051268f082ffc81.tar.xz forums-27b4ab92414c42345f6737890051268f082ffc81.zip |
[ticket/12873] Don not touch the existing migrations
PHPBB3-12873
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/phpbb/db/migration/data/v30x/release_3_0_0.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/db/migration/data/v30x/release_3_0_0.php b/phpBB/phpbb/db/migration/data/v30x/release_3_0_0.php index b3da3a831d..26937d6d80 100644 --- a/phpBB/phpbb/db/migration/data/v30x/release_3_0_0.php +++ b/phpBB/phpbb/db/migration/data/v30x/release_3_0_0.php @@ -731,7 +731,7 @@ class release_3_0_0 extends \phpbb\db\migration\migration 'title_match' => array('BOOL', 0), ), 'KEYS' => array( - 'un_mtch' => array('UNIQUE', array('word_id', 'post_id', 'title_match')), + 'unq_mtch' => array('UNIQUE', array('word_id', 'post_id', 'title_match')), 'word_id' => array('INDEX', 'word_id'), 'post_id' => array('INDEX', 'post_id'), ), |