feat(previews): add preview domain management and DNS status tracking

This commit is contained in:
Andras Bacsai
2026-08-30 16:20:16 +02:00
parent 8d675f2e21
commit ccea7287bf
15 changed files with 1199 additions and 348 deletions
@@ -0,0 +1,28 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('application_previews', function (Blueprint $table) {
$table->json('domain_dns_statuses')->nullable();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('application_previews', function (Blueprint $table) {
$table->dropColumn('domain_dns_statuses');
});
}
};