reorg: split repo / database so settings can use db connection as well
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
-- This file should undo anything in `up.sql`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
DROP TABLE IF EXISTS `settings`;
|
||||
@@ -0,0 +1,11 @@
|
||||
-- Your SQL goes here
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
CREATE TABLE `settings`(
|
||||
`key` TEXT NOT NULL PRIMARY KEY,
|
||||
`value` BINARY NOT NULL
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user