Skip to content

Commit 071f158

Browse files
authored
v4.0.0-beta.445 (#7321)
2 parents 006c4e5 + c0ee56d commit 071f158

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

config/constants.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
return [
44
'coolify' => [
5-
'version' => '4.0.0-beta.445',
5+
'version' => '4.0.0-beta.446',
66
'helper_version' => '1.0.12',
77
'realtime_version' => '1.0.10',
88
'self_hosted' => env('SELF_HOSTED', true),

database/migrations/2025_10_10_120002_create_cloud_init_scripts_table.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@
1111
*/
1212
public function up(): void
1313
{
14+
// Check if table already exists (handles upgrades from v444 where this migration
15+
// was named 2025_10_10_120000_create_cloud_init_scripts_table.php)
16+
if (Schema::hasTable('cloud_init_scripts')) {
17+
return;
18+
}
19+
1420
Schema::create('cloud_init_scripts', function (Blueprint $table) {
1521
$table->id();
1622
$table->foreignId('team_id')->constrained()->onDelete('cascade');

database/migrations/2025_10_10_120002_create_webhook_notification_settings_table.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@
1111
*/
1212
public function up(): void
1313
{
14+
// Check if table already exists (handles upgrades from v444 where this migration
15+
// was named 2025_10_10_120000_create_webhook_notification_settings_table.php)
16+
if (Schema::hasTable('webhook_notification_settings')) {
17+
return;
18+
}
19+
1420
Schema::create('webhook_notification_settings', function (Blueprint $table) {
1521
$table->id();
1622
$table->foreignId('team_id')->constrained()->cascadeOnDelete();

versions.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"coolify": {
33
"v4": {
4-
"version": "4.0.0-beta.445"
4+
"version": "4.0.0-beta.446"
55
},
66
"nightly": {
7-
"version": "4.0.0-beta.446"
7+
"version": "4.0.0-beta.447"
88
},
99
"helper": {
1010
"version": "1.0.12"

0 commit comments

Comments
 (0)