whoami7 - Manager
:
/
home
/
qbizpnmr
/
test.qbiztax.com
/
database
/
migrations
/
Upload File:
files >> /home/qbizpnmr/test.qbiztax.com/database/migrations/2023_10_03_000000_core_v310.php
<?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('contact_persons', function (Blueprint $table) { $table->increments('id'); $table->unsignedInteger('company_id'); $table->string('type'); $table->unsignedInteger('contact_id'); $table->string('name')->nullable(); $table->string('email')->nullable(); $table->string('phone')->nullable(); $table->string('created_from', 100)->nullable(); $table->unsignedInteger('created_by')->nullable(); $table->timestamps(); $table->softDeletes(); $table->index('company_id'); $table->index('type'); $table->index('contact_id'); }); Schema::create('transaction_taxes', function (Blueprint $table) { $table->increments('id'); $table->unsignedInteger('company_id'); $table->string('type'); $table->unsignedInteger('transaction_id'); $table->unsignedInteger('tax_id'); $table->string('name'); $table->double('amount', 15, 4)->default('0.0000'); $table->string('created_from', 100)->nullable(); $table->unsignedInteger('created_by')->nullable(); $table->timestamps(); $table->softDeletes(); $table->index('company_id'); $table->index('type'); $table->index('transaction_id'); }); } /** * Reverse the migrations. * * @return void */ public function down() { // } };
Copyright ©2021 || Defacer Indonesia