Files
spend-sparrow/migration/012_tag.up.sql
Tim Wundenberg b13712b0df
Some checks failed
Build and Push Docker Image / Build-And-Push-Docker-Image (push) Failing after 1m13s
feat(tag): add tag editing
2026-01-06 20:40:35 +01:00

14 lines
222 B
SQL

CREATE TABLE "tag" (
id TEXT NOT NULL UNIQUE PRIMARY KEY,
user_id TEXT NOT NULL,
name TEXT NOT NULL,
created_at DATETIME NOT NULL,
created_by TEXT NOT NULL,
updated_at DATETIME,
updated_by TEXT
) WITHOUT ROWID;