mirror of
https://github.com/JustKato/FreePad.git
synced 2026-08-20 18:15:40 +03:00
+ Started work on Sqlite
+ Started work on moving migrations into code instead of Dockerfile
This commit is contained in:
@@ -0,0 +1 @@
|
||||
DROP table t_posts;
|
||||
@@ -0,0 +1,6 @@
|
||||
CREATE TABLE IF NOT EXISTS "t_posts" (
|
||||
"id" INTEGER,
|
||||
"name" TEXT,
|
||||
"content" TEXT,
|
||||
PRIMARY KEY("id" AUTOINCREMENT)
|
||||
);
|
||||
Reference in New Issue
Block a user