feat: implemented episode actions GET route
This commit is contained in:
parent
bcfb8805eb
commit
029eb95382
7 changed files with 180 additions and 15 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue