PATH:
home
/
rwabteecom
/
public_html_olld
/
database
/
migrations
/
Editing: 2023_08_15_000000_rename_password_resets_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Support\Facades\Schema; return new class extends Migration { /** * Run the migrations. */ public function up(): void { Schema::rename('password_resets', 'password_reset_tokens'); } /** * Reverse the migrations. */ public function down(): void { Schema::rename('password_reset_tokens', 'password_resets'); } };
SAVE
CANCEL