[API-1] feat: search route

This commit is contained in:
Miguel da Mota 2024-01-01 23:58:26 +01:00
parent 57588c7e13
commit 96a091f068
24 changed files with 388 additions and 127 deletions

View file

@ -5,11 +5,11 @@ create table if not exists tracks
title varchar(255) not null,
duration_ms int not null default 0,
created_at timestamp default now() not null,
created_at timestamp default now(),
updated_at timestamp,
-- music services
spotify_id varchar(21) unique,
spotify_id varchar(22) unique,
tidal_id varchar(10) unique,
primary key (id)