D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
shaghela.online
/
database
/
migrations
/
Filename :
2024_07_06_064806_alter_isdefault_to_banks.php
back
Copy
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class AlterIsdefaultToBanks extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('banks', function (Blueprint $table) { $table->tinyInteger('is_default')->nullable()->default('0'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('banks', function (Blueprint $table) { // }); } }