id(); $table->char('domain_hash', 64)->unique()->index(); $table->string('name')->unique(); $table->json('allowed_types'); // ['public', 'private', 'custom', 'premium'] $table->boolean('is_active')->default(true); $table->boolean('is_archived')->default(false); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('domains'); } };