This repository has been archived on 2025-03-13. You can view files and clone it, but cannot push or open issues or pull requests.
Ion-Todo-Planner/create_db.sql
2024-03-26 16:13:09 +01:00

9 lines
241 B
SQL

CREATE TABLE "todo" (
"ID" INTEGER UNIQUE,
"TODO" TEXT NOT NULL,
"CREATION_DATE" INTEGER NOT NULL,
"DUE_DATE" INTEGER NOT NULL,
"PRIO" INTEGER NOT NULL,
"IMP" INTEGER NOT NULL,
PRIMARY KEY("ID")
);