/
home
/
u694682534
/
domains
/
blackbooks.me
/
public_html
/
almaher2
/
database
/
migrations
/
Upload File
HOME
<?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::create('business_locations', function (Blueprint $table) { $table->increments('id'); $table->integer('business_id')->unsigned(); $table->foreign('business_id')->references('id')->on('business')->onDelete('cascade'); $table->string('name', 256); $table->text('landmark')->nullable(); $table->string('country', 100); $table->string('state', 100); $table->string('city', 100); $table->char('zip_code', 7); $table->string('mobile')->nullable(); $table->string('alternate_number')->nullable(); $table->string('email')->nullable(); $table->softDeletes(); $table->timestamps(); //Indexing $table->index('business_id'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('business_locations'); } };