Add support for user preferences (im via email)

This commit is contained in:
BlueWall
2013-12-06 02:52:13 -05:00
parent 04f8fc1ce9
commit 1842388bb4
14 changed files with 297 additions and 36 deletions

View File

@@ -81,3 +81,12 @@ CREATE TABLE userdata (
commit;
:VERSION 3 # -------------------------------
begin;
CREATE TABLE usersettings (
"useruuid" char(36) NOT NULL,
"imviaemail" bytea NOT NULL,
"visible" bytea NOT NULL,
PRIMARY KEY ("useruuid")
);
commit;