Removed users.alias column, added option ('user_aliases')

to use email address from identities as username (#1488581)
This commit is contained in:
Aleksander Machniak
2012-08-06 11:08:58 +02:00
parent 83121ece33
commit 565c472918
11 changed files with 72 additions and 21 deletions

View File

@@ -180,3 +180,6 @@ ALTER TABLE contacts ALTER email TYPE text;
ALTER TABLE cache DROP COLUMN cache_id;
DROP SEQUENCE cache_ids;
ALTER TABLE users DROP COLUMN alias;
CREATE INDEX identities_email_idx ON identities (email, del);