D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
shaghela.online
/
database
/
migrations
/
Filename :
2022_01_10_093501_create_taxes_table.php
back
Copy
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateTaxesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('taxes', function (Blueprint $table) { $table->id(); $table->string('title', 100)->nullable(); $table->string('type', 100)->nullable()->default()->comment('fixed , percent');; $table->double('value')->nullable(); $table->tinyInteger('status')->nullable()->default('1')->comment('1- Active , 0- InActive'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('taxes'); } }