Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
painelestilopetshop.meupet.app
/
database
/
migrations
/
Editing: 2021_09_04_082220_rename_email_col.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class RenameEmailCol extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('password_resets', function (Blueprint $table) { $table->renameColumn('email', 'email_or_phone'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('password_resets', function (Blueprint $table) { // }); } }
Save
Cancel