feat(tasks): make primary key for task output to bigint

This commit is contained in:
Denis Gukov 2025-01-05 13:24:23 +05:00
parent ab89f0d4fb
commit 4e11016543
No known key found for this signature in database
GPG Key ID: 044381366A5D4731
2 changed files with 2 additions and 0 deletions

View File

@ -78,6 +78,7 @@ func GetMigrations() []Migration {
{Version: "2.10.46"},
{Version: "2.11.5"},
{Version: "2.12.0"},
{Version: "2.12.3"},
}
}

View File

@ -0,0 +1 @@
alter table `task__output` change `id` `id` bigint not null