mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
65329204a5
Summary: Closes T5464, Implement ApplicationTransactions in Calendar. Test Plan: Create a calendar event, update calendar event, detail view of event should show update history. Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: johnny-bit, Korvin, epriestley Maniphest Tasks: T5464 Differential Revision: https://secure.phabricator.com/D12586
16 lines
712 B
SQL
16 lines
712 B
SQL
CREATE TABLE {$NAMESPACE}_calendar.calendar_eventtransaction_comment (
|
|
id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
|
|
phid VARBINARY(64) NOT NULL,
|
|
transactionPHID VARBINARY(64) DEFAULT NULL,
|
|
authorPHID VARBINARY(64) NOT NULL,
|
|
viewPolicy VARBINARY(64) NOT NULL,
|
|
editPolicy VARBINARY(64) NOT NULL,
|
|
commentVersion INT UNSIGNED NOT NULL,
|
|
content LONGTEXT COLLATE {$COLLATE_TEXT} NOT NULL,
|
|
contentSource LONGTEXT COLLATE {$COLLATE_TEXT} NOT NULL,
|
|
isDeleted TINYINT(1) NOT NULL,
|
|
dateCreated INT UNSIGNED NOT NULL,
|
|
dateModified INT UNSIGNED NOT NULL,
|
|
UNIQUE KEY `key_phid` (`phid`),
|
|
UNIQUE KEY `key_version` (`transactionPHID`,`commentVersion`)
|
|
) ENGINE=InnoDB COLLATE {$COLLATE_TEXT}
|