From 8e4f02d994276a6a8140f638e91da5d6f3b1e039 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/migrations/2018_09_22_004100_change_registration_tokens_columns.php b/migrations/2018_09_22_004100_change_registration_tokens_columns.php index 526899c84..6fc797fea 100644 --- a/migrations/2018_09_22_004100_change_registration_tokens_columns.php +++ b/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();