summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2009-02-22 13:46:03 +0100
committerYorhel <git@yorhel.nl>2009-02-22 13:46:03 +0100
commite0390c46122dd2d4d14b7b7f2eeee27b679c133e (patch)
tree1a6956d0dc14ebd907c00af99ef86da1b007f9fc /util
parent8e8bf25368ce0e8371e3aa45ce75c560819ed92b (diff)
Renaming tags.aliases to tags.alias
Consistent with all other aliases field
Diffstat (limited to 'util')
-rw-r--r--util/updates/update_2.3.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/updates/update_2.3.sql b/util/updates/update_2.3.sql
index ce8ce966..249d1ef7 100644
--- a/util/updates/update_2.3.sql
+++ b/util/updates/update_2.3.sql
@@ -18,7 +18,7 @@ ALTER TABLE releases_rev ADD COLUMN catalog varchar(50) NOT NULL DEFAULT '';
CREATE TABLE tags (
id SERIAL NOT NULL PRIMARY KEY,
name varchar(250) NOT NULL UNIQUE,
- aliases text NOT NULL DEFAULT '',
+ alias text NOT NULL DEFAULT '',
description text NOT NULL DEFAULT '',
meta boolean NOT NULL DEFAULT FALSE
) WITHOUT OIDS;