From f0287c376a72d1f12a7baa579ae228cc5aaaa62e Mon Sep 17 00:00:00 2001 From: Franz Liedke Date: Thu, 31 Jan 2019 22:01:05 +0100 Subject: [PATCH] Fix table name in migration --- .../2018_09_22_004100_change_registration_tokens_columns.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/core/migrations/2018_09_22_004100_change_registration_tokens_columns.php b/framework/core/migrations/2018_09_22_004100_change_registration_tokens_columns.php index 526899c84..6fc797fea 100644 --- a/framework/core/migrations/2018_09_22_004100_change_registration_tokens_columns.php +++ b/framework/core/migrations/2018_09_22_004100_change_registration_tokens_columns.php @@ -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();