aboutsummaryrefslogtreecommitdiffstats
path: root/install/schema_postgres.sql
diff options
context:
space:
mode:
authorgit-marijus <mario@mariovavti.com>2017-04-26 14:19:54 +0200
committerGitHub <noreply@github.com>2017-04-26 14:19:54 +0200
commitc39a6800968f7ac017d215306b55d5b6bb39ded6 (patch)
tree10db25e4ce7ca6b62eae087214e6869a17a37b2c /install/schema_postgres.sql
parente8ddee284cbc82782aef0fc51a2079bf3f6a7327 (diff)
parent7d5ee81628a08dd560f7fdaa5b4d5a3f5ce3fb95 (diff)
downloadvolse-hubzilla-c39a6800968f7ac017d215306b55d5b6bb39ded6.tar.gz
volse-hubzilla-c39a6800968f7ac017d215306b55d5b6bb39ded6.tar.bz2
volse-hubzilla-c39a6800968f7ac017d215306b55d5b6bb39ded6.zip
Merge pull request #733 from zotlabs/etwoeemail
Etwoeemail
Diffstat (limited to 'install/schema_postgres.sql')
-rw-r--r--install/schema_postgres.sql2
1 files changed, 2 insertions, 0 deletions
diff --git a/install/schema_postgres.sql b/install/schema_postgres.sql
index be72a85e1..0328040f4 100644
--- a/install/schema_postgres.sql
+++ b/install/schema_postgres.sql
@@ -751,6 +751,7 @@ CREATE TABLE "mail" (
"to_xchan" text NOT NULL DEFAULT '',
"account_id" bigint NOT NULL DEFAULT '0',
"channel_id" bigint NOT NULL DEFAULT '0',
+ "mail_mimetype char(64) NOT NULL DEFAULT '0',
"title" text NOT NULL,
"body" text NOT NULL,
"sig" text NOT NULL,
@@ -763,6 +764,7 @@ CREATE TABLE "mail" (
"mail_seen" smallint NOT NULL DEFAULT '0',
"mail_recalled" smallint NOT NULL DEFAULT '0',
"mail_obscured" smallint NOT NULL DEFAULT '0',
+ "mail_raw" smallint NOT NULL DEFAULT '0',
"created" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00',
"expires" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00',
PRIMARY KEY ("id")