Create artists table
This commit is contained in:
4
migrations/2024-02-06-145714_create_artists_table/up.sql
Normal file
4
migrations/2024-02-06-145714_create_artists_table/up.sql
Normal file
@ -0,0 +1,4 @@
|
||||
CREATE TABLE artists (
|
||||
id SERIAL PRIMARY KEY UNIQUE NOT NULL,
|
||||
name VARCHAR NOT NULL
|
||||
);
|
Reference in New Issue
Block a user