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