diff options
author | CiaranG <ciaran@ciarang.com> | 2009-03-03 20:18:26 +0000 |
---|---|---|
committer | CiaranG <ciaran@ciarang.com> | 2009-03-03 20:18:26 +0000 |
commit | 8408e82f928d1b159a6c9f2dd8fabd269590be61 (patch) | |
tree | 440a6a94d8dc58250f5f23756884ec2199e10979 /db/laconica_pg.sql | |
parent | 8b9e559167e27c490648cc55c4f617c2e9122a18 (diff) |
PostgreSQL - added new emailnotifyattn field to user table, to match MySQL version
Diffstat (limited to 'db/laconica_pg.sql')
-rw-r--r-- | db/laconica_pg.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/db/laconica_pg.sql b/db/laconica_pg.sql index 9882d091a..cacdfa97e 100644 --- a/db/laconica_pg.sql +++ b/db/laconica_pg.sql @@ -50,6 +50,7 @@ create table "user" ( emailnotifyfav integer default 1 /* comment 'Notify by email of favorites' */,
emailnotifynudge integer default 1 /* comment 'Notify by email of nudges' */,
emailnotifymsg integer default 1 /* comment 'Notify by email of direct messages' */,
+ emailnotifyattn integer default 1 /* command 'Notify by email of @-replies' */,
emailmicroid integer default 1 /* comment 'whether to publish email microid' */,
language varchar(50) /* comment 'preferred language' */,
timezone varchar(50) /* comment 'timezone' */,
|