rename schemalessAttrributes

This commit is contained in:
Andras Bacsai
2023-05-30 09:52:58 +02:00
parent bdb19dae89
commit 108c790cf4
8 changed files with 17 additions and 17 deletions

View File

@@ -41,7 +41,7 @@ return new class extends Migration
$table->string('base_directory')->default('/');
$table->string('publish_directory')->nullable();
$table->schemalessAttributes('previews');
$table->schemalessAttributes('extra_attributes');
$table->string('health_check_path')->default('/');
$table->string('health_check_port')->nullable();

View File

@@ -15,7 +15,7 @@ return new class extends Migration
$table->id();
$table->string('application_id');
$table->integer('pull_request_id')->default(0);
$table->schemalessAttributes('metadata');
$table->schemalessAttributes('extra_attributes');
$table->string('status')->default('queued');
$table->timestamps();
});