fix(migration): remove buckets table name when dropping index

Related to https://kolaente.dev/vikunja/vikunja/issues/2243
This commit is contained in:
kolaente 2024-04-21 13:50:03 +02:00
parent 0962aa4262
commit e88f95e501
No known key found for this signature in database
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ insert into buckets_dg_tmp(id, title, "limit", position, created, updated, creat
select id, title, "limit", position, created, updated, created_by_id, project_view_id
from buckets;
drop index if exists buckets.UQE_buckets_id;
drop index if exists UQE_buckets_id;
drop table buckets;