1
0
mirror of https://github.com/JustKato/FreePad.git synced 2026-02-24 00:00:46 +02:00

+ Started work on Sqlite

+ Started work on moving migrations into code instead of Dockerfile
This commit is contained in:
2022-05-17 03:20:31 +03:00
parent af6a4676e3
commit c8dde83c05
10 changed files with 1815 additions and 4 deletions

View File

@@ -0,0 +1 @@
DROP table t_posts;

View File

@@ -0,0 +1,6 @@
CREATE TABLE IF NOT EXISTS "t_posts" (
"id" INTEGER,
"name" TEXT,
"content" TEXT,
PRIMARY KEY("id" AUTOINCREMENT)
);