관리-도구
편집 파일: 2025_05_26_120912_create_taxables_table.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateTaxablesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('taxables', function (Blueprint $table) { $table->id(); $table->string('taxable_type'); $table->foreignId('taxable_id'); $table->foreignId('tax_id'); $table->foreignId('system_tax_setup_id'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('taxables'); } }