Compare commits

..

No commits in common. "53ca2c24c15280f9599b4ea109e66cc17adf1edd" and "ac587a1b1cfcafb480ed3bf196b2d9f16afeaf48" have entirely different histories.

View File

@ -0,0 +1,9 @@
CREATE TABLE IF NOT EXISTS "notification" (
"id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"user_id" INTEGER NOT NULL REFERENCES user(id),
"message" TEXT NOT NULL,
"read_at" DATETIME,
"created_at" DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL,
"category" TEXT NOT NULL,
"link" TEXT
);