carrentalservice/database/migrations/2026_02_19_091556_create_payments_table.php
2026-02-19 22:05:20 +00:00

28 lines
870 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->foreignId('rental_id')->constrained()->onDelete('cascade');
$table->decimal('amount', 10, 2);
$table->enum('method', ['cash', 'card', 'bank_transfer', 'online', 'other']);
$table->enum('status', ['pending', 'completed', 'failed', 'refunded'])->default('completed');
$table->string('transaction_id')->nullable();
$table->text('notes')->nullable();
$table->timestamps();
});
}
public function down(): void
{
Schema::dropIfExists('payments');
}
};