D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
almahero.online
/
database
/
migrations
/
Filename :
2022_08_04_160730_add_city_id_to_instructors.php
back
Copy
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('instructors', function (Blueprint $table) { $table->unsignedBigInteger('city_id')->after('state_id')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('instructors', function (Blueprint $table) { $table->dropColumn('city_id'); }); } };