Edit File: 2021_06_25_200904_create_banks_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateBanksTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('banks', function (Blueprint $table) { $table->increments('id'); $table->text('name')->nullable(); $table->string('city')->nullable(); $table->text('branch')->nullable(); $table->text('swift_code')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('banks'); } }
Back to File Manager