aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Riehs <tristan.riehs@inria.fr>2026-07-16 12:23:44 +0200
committerTristan Riehs <tristan.riehs@inria.fr>2026-07-16 12:23:44 +0200
commitf29e8db46c10b90acccd4205e595c888d3515cb9 (patch)
tree0a2a89a67966a22901699a01256fbc5caa6f6fdf
parent04e39575f548671906d9292cb0a02dbded3177e8 (diff)
Add todo regarding column name
-rw-r--r--sql/init.sql3
1 files changed, 3 insertions, 0 deletions
diff --git a/sql/init.sql b/sql/init.sql
index 4c73327..255e98d 100644
--- a/sql/init.sql
+++ b/sql/init.sql
@@ -6,6 +6,9 @@ CREATE TABLE tags (
CREATE TABLE files (
id integer NOT NULL PRIMARY KEY,
+ -- TODO: just call this column 'name'
+ -- This will make things much easier as 'name' is
+ -- also used for the tag table.
canonical_name varchar(255) NOT NULL,
full_name varchar(255) NOT NULL,
description text,