summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2008-12-23 12:06:42 +0100
committerYorhel <git@yorhel.nl>2008-12-23 12:06:42 +0100
commitc59111e989844e670aea7a1e6af3bdd134e6cebc (patch)
tree13c2b72f8179e285baa365ea054f5123c8336699 /util
parentc435aa0b2b60e785d2b5447e751c761736f8852c (diff)
Added skin selector to profile page
Diffstat (limited to 'util')
-rw-r--r--util/dump.sql1
-rw-r--r--util/updates/update_2.1.sql4
2 files changed, 5 insertions, 0 deletions
diff --git a/util/dump.sql b/util/dump.sql
index 848ddd34..b8c7fa54 100644
--- a/util/dump.sql
+++ b/util/dump.sql
@@ -185,6 +185,7 @@ CREATE TABLE users (
show_list boolean NOT NULL DEFAULT TRUE,
c_votes integer NOT NULL DEFAULT 0,
c_changes integer NOT NULL DEFAULT 0
+ skin varchar(128) NOT NULL DEFAULT '',
);
-- vn
diff --git a/util/updates/update_2.1.sql b/util/updates/update_2.1.sql
new file mode 100644
index 00000000..7ae8fecf
--- /dev/null
+++ b/util/updates/update_2.1.sql
@@ -0,0 +1,4 @@
+
+-- skin selector
+ALTER TABLE users ADD COLUMN skin varchar(128) NOT NULL DEFAULT '';
+