mirror of
https://github.com/tiennm99/coolify.git
synced 2026-04-17 17:21:04 +00:00
v4.0.0-beta.445 (#7321)
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
return [
|
return [
|
||||||
'coolify' => [
|
'coolify' => [
|
||||||
'version' => '4.0.0-beta.445',
|
'version' => '4.0.0-beta.446',
|
||||||
'helper_version' => '1.0.12',
|
'helper_version' => '1.0.12',
|
||||||
'realtime_version' => '1.0.10',
|
'realtime_version' => '1.0.10',
|
||||||
'self_hosted' => env('SELF_HOSTED', true),
|
'self_hosted' => env('SELF_HOSTED', true),
|
||||||
|
|||||||
@@ -11,6 +11,12 @@ return new class extends Migration
|
|||||||
*/
|
*/
|
||||||
public function up(): void
|
public function up(): void
|
||||||
{
|
{
|
||||||
|
// Check if table already exists (handles upgrades from v444 where this migration
|
||||||
|
// was named 2025_10_10_120000_create_cloud_init_scripts_table.php)
|
||||||
|
if (Schema::hasTable('cloud_init_scripts')) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
Schema::create('cloud_init_scripts', function (Blueprint $table) {
|
Schema::create('cloud_init_scripts', function (Blueprint $table) {
|
||||||
$table->id();
|
$table->id();
|
||||||
$table->foreignId('team_id')->constrained()->onDelete('cascade');
|
$table->foreignId('team_id')->constrained()->onDelete('cascade');
|
||||||
|
|||||||
@@ -11,6 +11,12 @@ return new class extends Migration
|
|||||||
*/
|
*/
|
||||||
public function up(): void
|
public function up(): void
|
||||||
{
|
{
|
||||||
|
// Check if table already exists (handles upgrades from v444 where this migration
|
||||||
|
// was named 2025_10_10_120000_create_webhook_notification_settings_table.php)
|
||||||
|
if (Schema::hasTable('webhook_notification_settings')) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
Schema::create('webhook_notification_settings', function (Blueprint $table) {
|
Schema::create('webhook_notification_settings', function (Blueprint $table) {
|
||||||
$table->id();
|
$table->id();
|
||||||
$table->foreignId('team_id')->constrained()->cascadeOnDelete();
|
$table->foreignId('team_id')->constrained()->cascadeOnDelete();
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
{
|
{
|
||||||
"coolify": {
|
"coolify": {
|
||||||
"v4": {
|
"v4": {
|
||||||
"version": "4.0.0-beta.445"
|
"version": "4.0.0-beta.446"
|
||||||
},
|
},
|
||||||
"nightly": {
|
"nightly": {
|
||||||
"version": "4.0.0-beta.446"
|
"version": "4.0.0-beta.447"
|
||||||
},
|
},
|
||||||
"helper": {
|
"helper": {
|
||||||
"version": "1.0.12"
|
"version": "1.0.12"
|
||||||
|
|||||||
Reference in New Issue
Block a user