]> git.donarmstrong.com Git - debbugs.git/commitdiff
add recv correspondent type
authorDon Armstrong <don@donarmstrong.com>
Wed, 8 Mar 2017 02:59:41 +0000 (18:59 -0800)
committerDon Armstrong <don@donarmstrong.com>
Wed, 8 Mar 2017 02:59:41 +0000 (18:59 -0800)
sql/debbugs_schema.sql

index e7a88906b9ec8914c79836fa4b477f6291cf7d26..95f742edf86b6f2d4d5c44a88ac35b10cec4ccc3 100644 (file)
@@ -511,7 +511,7 @@ INSERT INTO table_comments VALUES ('correspondent_full_name','Full names of BTS
 INSERT INTO column_comments VALUES ('correspondent_full_name','correspondent','Correspondent ID (matches correspondent)');
 INSERT INTO column_comments VALUES ('correspondent_full_name','full_name','Correspondent full name (includes e-mail address)');
 
-CREATE TYPE message_correspondent_type AS ENUM ('to','from','envfrom','cc');
+CREATE TYPE message_correspondent_type AS ENUM ('to','from','envfrom','cc','recv');
 
 CREATE TABLE message_correspondent (
        message INT NOT NULL REFERENCES message ON DELETE CASCADE ON UPDATE CASCADE,