This commit is contained in:
Miguel da Mota 2024-01-01 03:18:33 +01:00
parent 8a19a733d6
commit 52ef924f12
28 changed files with 577 additions and 170 deletions

View file

@ -1,2 +1,2 @@
-- This file should undo anything in `up.sql`
DROP TABLE tracks;
drop table tracks;

View file

@ -1,16 +1,16 @@
-- Your SQL goes here
CREATE TABLE IF NOT EXISTS tracks
create table if not exists tracks
(
id VARCHAR(24) DEFAULT nanoid(24),
title VARCHAR(255) NOT NULL,
duration_ms INT NOT NULL DEFAULT 0,
id varchar(24) default nanoid(24),
title varchar(255) not null,
duration_ms int not null default 0,
created_at TIMESTAMP DEFAULT now() NOT NULL,
updated_at TIMESTAMP,
created_at timestamp default now() not null,
updated_at timestamp,
-- music services
spotify_id VARCHAR(21) UNIQUE,
tidal_id VARCHAR(10) UNIQUE,
spotify_id varchar(21) unique,
tidal_id varchar(10) unique,
PRIMARY KEY (id)
primary key (id)
);