feat: implemented episode actions GET route

This commit is contained in:
Jef Roosens 2025-03-04 16:44:30 +01:00
parent bcfb8805eb
commit 029eb95382
No known key found for this signature in database
GPG key ID: 21FD3D77D56BAF49
7 changed files with 180 additions and 15 deletions

View file

@ -47,6 +47,9 @@ create table device_subscriptions (
create table episode_actions (
id integer primary key not null,
user_id bigint not null
references users (id)
on delete cascade,
-- Can be null, as the device is not always provided
device_id bigint
references devices (id)