mirror of
https://github.com/flarum/core.git
synced 2025-08-02 14:37:49 +02:00
Fix table name in migration
This commit is contained in:
@@ -24,7 +24,7 @@ return [
|
|||||||
},
|
},
|
||||||
|
|
||||||
'down' => function (Builder $schema) {
|
'down' => function (Builder $schema) {
|
||||||
$schema->table('auth_tokens', function (Blueprint $table) {
|
$schema->table('registration_tokens', function (Blueprint $table) {
|
||||||
$table->dropColumn('provider', 'identifier', 'user_attributes');
|
$table->dropColumn('provider', 'identifier', 'user_attributes');
|
||||||
|
|
||||||
$table->string('payload', 150)->change();
|
$table->string('payload', 150)->change();
|
||||||
|
Reference in New Issue
Block a user