[API-1] feat: search route
This commit is contained in:
parent
57588c7e13
commit
96a091f068
24 changed files with 388 additions and 127 deletions
|
@ -2,11 +2,11 @@ create table if not exists playlists
|
|||
(
|
||||
id varchar(24) default nanoid(24),
|
||||
name varchar(255) not null,
|
||||
public bool default false,
|
||||
public bool default false not null,
|
||||
|
||||
creator_id varchar(24) not null,
|
||||
|
||||
created_at timestamp default now() not null,
|
||||
created_at timestamp default now(),
|
||||
updated_at timestamp,
|
||||
|
||||
primary key (id),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue