Add Migrations
This commit is contained in:
parent
952bb316c2
commit
e426c580f5
8 changed files with 34 additions and 0 deletions
7
migrations/000001_create_libraries_table.up.sql
Normal file
7
migrations/000001_create_libraries_table.up.sql
Normal file
|
@ -0,0 +1,7 @@
|
|||
|
||||
CREATE TABLE IF NOT EXISTS libraries(
|
||||
id serial PRIMARY KEY,
|
||||
enable boolean NOT NULL,
|
||||
name VARCHAR (50) NOT NULL,
|
||||
path VARCHAR (500) NOT NULL
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue