1
0
Fork 0

Revert "Begin add diesel"

This reverts commit 566246ff3b.
This commit is contained in:
Florian RICHER 2023-01-02 21:09:46 +01:00
parent 566246ff3b
commit e4e39fa0a9
16 changed files with 7 additions and 184 deletions

View file

View file

@ -1,2 +0,0 @@
-- This file should undo anything in `up.sql`
DROP TABLE artists

View file

@ -1,9 +0,0 @@
-- Your SQL goes here
CREATE TABLE artists (
id INTEGER PRIMARY KEY AUTOINCREMENT,
artist_name VARCHAR NOT NULL,
artist_url VARCHAR NOT NULL,
date INT NOT NULL,
author VARCHAR NOT NULL,
author_url VARCHAR NOT NULL
)

View file

@ -1,2 +0,0 @@
-- This file should undo anything in `up.sql`
DROP TABLE labels

View file

@ -1,9 +0,0 @@
-- Your SQL goes here
CREATE TABLE labels (
id INTEGER PRIMARY KEY AUTOINCREMENT,
artist_name VARCHAR NOT NULL,
artist_url VARCHAR NOT NULL,
date INT NOT NULL,
author VARCHAR NOT NULL,
author_url VARCHAR NOT NULL
)

View file

@ -1,2 +0,0 @@
-- This file should undo anything in `up.sql`
DROP TABLE musicians

View file

@ -1,9 +0,0 @@
-- Your SQL goes here
CREATE TABLE musicians (
id INTEGER PRIMARY KEY AUTOINCREMENT,
artist_name VARCHAR NOT NULL,
artist_url VARCHAR NOT NULL,
date INT NOT NULL,
author VARCHAR NOT NULL,
author_url VARCHAR NOT NULL
)

View file

@ -1,2 +0,0 @@
-- This file should undo anything in `up.sql`
DROP TABLE releases

View file

@ -1,11 +0,0 @@
-- Your SQL goes here
CREATE TABLE releases (
id INTEGER PRIMARY KEY AUTOINCREMENT,
artist_name VARCHAR NOT NULL,
artist_url VARCHAR NOT NULL,
album VARCHAR NOT NULL,
album_url VARCHAR NOT NULL,
date INT NOT NULL,
author VARCHAR NOT NULL,
author_url VARCHAR NOT NULL
)