mirror of
https://github.com/ershisan99/coolify.git
synced 2025-12-16 20:49:28 +00:00
fix: multiline env variables
This commit is contained in:
@@ -14,6 +14,9 @@ return new class extends Migration
|
||||
Schema::table('environment_variables', function (Blueprint $table) {
|
||||
$table->boolean('is_multiline')->default(false);
|
||||
});
|
||||
Schema::table('shared_environment_variables', function (Blueprint $table) {
|
||||
$table->boolean('is_multiline')->default(false);
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -24,5 +27,8 @@ return new class extends Migration
|
||||
Schema::table('environment_variables', function (Blueprint $table) {
|
||||
$table->dropColumn('is_multiline');
|
||||
});
|
||||
Schema::table('shared_environment_variables', function (Blueprint $table) {
|
||||
$table->dropColumn('is_multiline');
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user