Added database for projects

This commit is contained in:
2025-10-27 14:28:37 +01:00
parent d692bf1cdd
commit 4e53f9ed1f
4 changed files with 83 additions and 38 deletions

View File

@@ -0,0 +1,13 @@
CREATE TABLE IF NOT EXISTS Projects (
"id" TEXT NOT NULL,
"title" TEXT NOT NULL,
"description" TEXT NOT NULL
);
CREATE TABLE IF NOT EXISTS Project_Detail (
"id" TEXT PRIMARY KEY NOT NULL,
"title" TEXT NOT NULL,
"git_url" TEXT NOT NULL,
"git_title" TEXT NOT NULL,
"description" TEXT NOT NULL
)