mirror of
https://github.com/ershisan99/coolify.git
synced 2025-12-16 20:49:28 +00:00
feat: image tag for services
This commit is contained in:
@@ -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');
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
@@ -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');
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user