From 8431a769cd80ba70c2b623751e6deacde3873247 Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Sun, 10 Oct 2010 07:25:03 -0400
Subject: [PATCH] - Align drop down menus under main button (#1487048)

---
 SQL/postgres.update.sql |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/SQL/postgres.update.sql b/SQL/postgres.update.sql
index 1ef93d8..99b9c0e 100644
--- a/SQL/postgres.update.sql
+++ b/SQL/postgres.update.sql
@@ -56,7 +56,7 @@
     NO MAXVALUE
     NO MINVALUE
     CACHE 1;
-		
+
 CREATE TABLE contactgroups (
     contactgroup_id integer DEFAULT nextval('contactgroups_ids'::text) PRIMARY KEY,
     user_id 	integer		NOT NULL
@@ -81,3 +81,9 @@
 
 ALTER TABLE users ALTER last_login DROP NOT NULL;
 ALTER TABLE users ALTER last_login SET DEFAULT NULL;
+
+-- Updates from version 0.4.2
+
+DROP INDEX users_username_id_idx;
+ALTER TABLE users ADD UNIQUE (username, mail_host);
+

--
Gitblit v1.9.1