physiotherapy-clinic/database/migrations/2024_01_01_000007_create_payments_table.php

31 lines
977 B
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('payments', function (Blueprint $table) {
$table->id();
$table->string('payment_number')->unique();
$table->foreignId('invoice_id')->constrained('invoices');
$table->date('payment_date');
$table->decimal('amount', 15, 2);
$table->enum('payment_method', ['cash', 'card', 'bank_transfer', 'check', 'insurance', 'other']);
$table->string('reference_number')->nullable();
$table->text('notes')->nullable();
$table->foreignId('received_by')->constrained('users');
$table->timestamps();
$table->softDeletes();
});
}
public function down(): void
{
Schema::dropIfExists('payments');
}
};