diff options
| author | Tristan Riehs <tristan.riehs@inria.fr> | 2026-07-16 12:23:44 +0200 |
|---|---|---|
| committer | Tristan Riehs <tristan.riehs@inria.fr> | 2026-07-16 12:23:44 +0200 |
| commit | f29e8db46c10b90acccd4205e595c888d3515cb9 (patch) | |
| tree | 0a2a89a67966a22901699a01256fbc5caa6f6fdf | |
| parent | 04e39575f548671906d9292cb0a02dbded3177e8 (diff) | |
Add todo regarding column name
| -rw-r--r-- | sql/init.sql | 3 |
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, |
