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();