Пробные миграции

This commit is contained in:
Book Pauk
2019-03-08 18:26:03 +07:00
parent 5122cda6db
commit c287ca9ea8
4 changed files with 25 additions and 11 deletions

View File

@@ -0,0 +1,7 @@
module.exports = `
-- Up
CREATE TABLE storage (id2 INTEGER PRIMARY KEY, name TEXT);
-- Down
DROP TABLE storage;
`;