Remove booking pricing and fix venue image delivery

هذا الالتزام موجود في:
Abdul Kareem
2026-02-22 21:13:34 +03:00
الأصل 090427cf2c
التزام 23fb3a5d92
4 ملفات معدلة مع 145 إضافات و70 حذوفات

عرض الملف

@@ -10,7 +10,8 @@ return new class extends Migration
{
Schema::create('pricing_rules', function (Blueprint $table) {
$table->id();
$table->enum('scope', ['global', 'type', 'venue']);
// Keep enum values aligned with the PostgreSQL schema (`pricing_scope_enum`).
$table->enum('scope', ['global_type', 'venue']);
$table->string('venue_type')->nullable();
$table->foreignId('venue_id')->nullable()->constrained('venues')->nullOnDelete();
$table->decimal('price_per_person', 10, 2);