[ Index ]

PHP Cross Reference of Phabricator

title

Body

[close]

/resources/sql/patches/ -> 036.mailkey.sql (source)

   1  ALTER TABLE {$NAMESPACE}_differential.differential_revision
   2    ADD mailKey VARCHAR(40) binary NOT NULL;
   3  
   4  ALTER TABLE {$NAMESPACE}_maniphest.maniphest_task
   5    ADD mailKey VARCHAR(40) binary NOT NULL;
   6  
   7  CREATE TABLE {$NAMESPACE}_metamta.metamta_receivedmail (
   8    id int unsigned not null primary key auto_increment,
   9    headers longblob not null,
  10    bodies longblob not null,
  11    attachments longblob not null,
  12    relatedPHID varchar(64) binary,
  13    key(relatedPHID),
  14    authorPHID varchar(64) binary,
  15    key(authorPHID),
  16    message longblob,
  17    dateCreated int unsigned not null,
  18    dateModified int unsigned not null
  19  ) engine=innodb;


Generated: Sun Nov 30 09:20:46 2014 Cross-referenced by PHPXref 0.7.1