Fix table name in migration

This commit is contained in:
Franz Liedke 2019-01-31 22:01:05 +01:00
parent 0273bf78db
commit f0287c376a

View File

@ -24,7 +24,7 @@ return [
},
'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->string('payload', 150)->change();