mirror of
https://github.com/JustKato/FreePad.git
synced 2026-02-24 00:00:46 +02:00
+ Restructuring!
This commit is contained in:
1
dist/db/migrations_sqlite/000001_posts.down.sql
vendored
Normal file
1
dist/db/migrations_sqlite/000001_posts.down.sql
vendored
Normal file
@@ -0,0 +1 @@
|
||||
DROP table t_posts;
|
||||
6
dist/db/migrations_sqlite/000001_posts.up.sql
vendored
Normal file
6
dist/db/migrations_sqlite/000001_posts.up.sql
vendored
Normal file
@@ -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