summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-12-11 10:14:08 +0100
committerJoas Schilling <coding@schilljs.com>2020-12-14 15:58:01 +0100
commit6673b33fdceaabaf4e3b206afd2b27f06e387109 (patch)
treecafd3a402c6ca953e9688ccfcc54b16dcb86ec31 /lib
parentaf69e3b78428caa03296d7d7d33b125832d1b74a (diff)
Use a unique index name
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/Migration/Version11000Date20201209142525.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Migration/Version11000Date20201209142525.php b/lib/Migration/Version11000Date20201209142525.php
index 1f4edc318..c890e97be 100644
--- a/lib/Migration/Version11000Date20201209142525.php
+++ b/lib/Migration/Version11000Date20201209142525.php
@@ -103,7 +103,7 @@ class Version11000Date20201209142525 extends SimpleMigrationStep {
]);
$table->setPrimaryKey(['id']);
- $table->addUniqueIndex(['session_hash'], 'tg_session_hash');
+ $table->addUniqueIndex(['session_hash'], 'tgn_session_hash');
$changedSchema = true;
}