aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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,