fix: use correct table name for sync_group

This commit is contained in:
Jef Roosens 2025-03-16 22:32:28 +01:00
parent 158910a61f
commit 025a69ea71
No known key found for this signature in database
GPG key ID: 21FD3D77D56BAF49
3 changed files with 4 additions and 1 deletions

View file

@ -2,6 +2,8 @@ drop table episode_actions;
drop table device_subscriptions;
drop table sync_groups;
drop table devices;
drop table sessions;

View file

@ -25,7 +25,7 @@ create table devices (
references users (id)
on delete cascade,
sync_group_id bigint
references sync_group (id)
references sync_groups (id)
on delete set null,
caption text not null,