feat: image tag for services

This commit is contained in:
Andras Bacsai
2023-09-25 17:51:04 +02:00
parent 0f8ccac775
commit 0fbc382467
7 changed files with 27 additions and 6 deletions

View File

@@ -13,6 +13,7 @@ return new class extends Migration
{
Schema::table('service_applications', function (Blueprint $table) {
$table->boolean('ignore_from_status')->default(false);
$table->string('image_tag')->nullable();
});
}
@@ -23,6 +24,7 @@ return new class extends Migration
{
Schema::table('service_applications', function (Blueprint $table) {
$table->dropColumn('ignore_from_status');
$table->dropColumn('image_tag');
});
}
};

View File

@@ -13,7 +13,7 @@ return new class extends Migration
{
Schema::table('service_databases', function (Blueprint $table) {
$table->boolean('ignore_from_status')->default(false);
$table->string('image_tag')->nullable();
});
}
@@ -24,6 +24,7 @@ return new class extends Migration
{
Schema::table('service_databases', function (Blueprint $table) {
$table->dropColumn('ignore_from_status');
$table->dropColumn('image_tag');
});
}
};