You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
318 B
MySQL
11 lines
318 B
MySQL
4 years ago
|
-- Your SQL goes here
|
||
|
CREATE TABLE youtube_songs (
|
||
|
id BIGSERIAL PRIMARY KEY,
|
||
|
spotify_id VARCHAR(255) NOT NULL,
|
||
|
artist VARCHAR(128) NOT NULL,
|
||
|
title VARCHAR(255) NOT NULL,
|
||
|
album VARCHAR(255) NOT NULL,
|
||
|
url VARCHAR(128) NOT NULL,
|
||
|
score INTEGER DEFAULT 0 NOT NULL,
|
||
|
UNIQUE (spotify_id, url)
|
||
|
)
|