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

@@ -88,3 +88,15 @@ CREATE TABLE IF NOT EXISTS userdata (
commit;
:VERSION 3 # -------------------------------
begin;
CREATE TABLE IF NOT EXISTS usersettings (
useruuid char(36) NOT NULL,
imviaemail binary(1) NOT NULL,
visible binary(1) NOT NULL,
email varchar(254) NOT NULL,
PRIMARY KEY (useruuid)
)
commit;