Fix missing authtoken scope
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
parent
7518f67f33
commit
83f4f480ab
|
@ -549,6 +549,11 @@ class Version13000Date20170718121200 extends SimpleMigrationStep {
|
||||||
$table->setPrimaryKey(['id']);
|
$table->setPrimaryKey(['id']);
|
||||||
$table->addUniqueIndex(['token'], 'authtoken_token_index');
|
$table->addUniqueIndex(['token'], 'authtoken_token_index');
|
||||||
$table->addIndex(['last_activity'], 'authtoken_last_activity_idx');
|
$table->addIndex(['last_activity'], 'authtoken_last_activity_idx');
|
||||||
|
} else {
|
||||||
|
$table = $schema->getTable('authtoken');
|
||||||
|
$table->addColumn('scope', 'text', [
|
||||||
|
'notnull' => false,
|
||||||
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$schema->hasTable('bruteforce_attempts')) {
|
if (!$schema->hasTable('bruteforce_attempts')) {
|
||||||
|
|
Loading…
Reference in New Issue