diff options
author | Alexander NeonXP Kiryukhin <i@neonxp.ru> | 2024-07-20 21:56:37 +0300 |
---|---|---|
committer | Alexander NeonXP Kiryukhin <i@neonxp.ru> | 2024-07-20 21:58:27 +0300 |
commit | e9a64f3b41b5eae47dec7c0ecfd1caae83136abc (patch) | |
tree | c07898520a7015c3f2a201ca0674efea82dd76a5 /migrations/1_schema.up.sql | |
parent | 9c0a6b21f8f8d9b725e1fe7f11da4532e04fd9f1 (diff) |
initialv0.0.1
Diffstat (limited to 'migrations/1_schema.up.sql')
-rw-r--r-- | migrations/1_schema.up.sql | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/migrations/1_schema.up.sql b/migrations/1_schema.up.sql new file mode 100644 index 0000000..2f8bc04 --- /dev/null +++ b/migrations/1_schema.up.sql @@ -0,0 +1,27 @@ +CREATE TABLE IF NOT EXISTS "users" ( + "id" INTEGER, + "email" TEXT NOT NULL, + "password" TEXT NOT NULL, + "username" TEXT NOT NULL, + "photo" TEXT, + "role" INTEGER DEFAULT(0), + PRIMARY KEY ("id" AUTOINCREMENT), + UNIQUE ("email" COLLATE NOCASE), + UNIQUE ("username" COLLATE NOCASE) +); + +CREATE TABLE IF NOT EXISTS "nodes" ( + "id" INTEGER, + "type" INTEGER, + "text" TEXT, + "author_id" INTEGER NOT NULL, + "parent_id" INTEGER, + "created_at" INTEGER NOT NULL, + "updated_at" INTEGER NOT NULL, + "deleted_at" INTEGER, + "permission" INTEGER, + PRIMARY KEY ("id" AUTOINCREMENT), + FOREIGN KEY ("author_id") REFERENCES "users" ("id"), + FOREIGN KEY ("parent_id") REFERENCES "posts" ("id") +); + |