D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
euphoriahub.store
/
database
/
migrations
/
Filename :
2021_11_20_043814_change_pass_reset_email_col.php
back
Copy
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class ChangePassResetEmailCol extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('password_resets', function (Blueprint $table) { $table->renameColumn('email', 'identity'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('password_resets', function (Blueprint $table) { // }); } }