PATH:
home
/
rwabteecom
/
public_html
/
database
/
migrations
/
Editing: 2014_10_12_045650_create_states_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { /** * Run the migrations. */ public function up(): void { Schema::create('states', function (Blueprint $table) { $table->id(); $table->unsignedBigInteger('country_id'); $table->string('name'); $table->timestamps(); $table->foreign('country_id')->references('id')->on('countries') ->onDelete('cascade') ->onUpdate('cascade'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('states'); } };
SAVE
CANCEL