33 lines
1.0 KiB
PHP
33 lines
1.0 KiB
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
return new class extends Migration {
|
|
public function up(): void
|
|
{
|
|
Schema::create('incomes', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->unsignedBigInteger('tenant_id');
|
|
$table->date('date');
|
|
$table->string('customer', 100);
|
|
$table->string('description', 200)->nullable();
|
|
$table->string('category', 50)->default('기타수입');
|
|
$table->bigInteger('amount')->default(0);
|
|
$table->string('status', 20)->default('pending');
|
|
$table->string('invoice_no', 50)->nullable();
|
|
$table->text('memo')->nullable();
|
|
$table->timestamps();
|
|
$table->softDeletes();
|
|
$table->index(['tenant_id', 'status']);
|
|
$table->index(['tenant_id', 'date']);
|
|
});
|
|
}
|
|
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('incomes');
|
|
}
|
|
};
|