mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
d5b70e2c1c
Summary: Ref T5833. Allows you to bind a service (like `db.example.com`) to one or more interfaces (for example, to specify a pool with one read/write host and two read-only hosts). You can't configure which hosts have which properties yet, but you can add all the relevant interfaces to the service. Next diff will start supporting service, binding, and device properties like "is writable", "is active", etc., so that Almanac will be able to express operations like "change which database is writable", "disable writes", "bring a device down", etc. Test Plan: See screenshots. Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T5833 Differential Revision: https://secure.phabricator.com/D10745
19 lines
904 B
SQL
19 lines
904 B
SQL
CREATE TABLE {$NAMESPACE}_almanac.almanac_bindingtransaction (
|
|
id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
|
|
phid VARCHAR(64) COLLATE utf8_bin NOT NULL,
|
|
authorPHID VARCHAR(64) COLLATE utf8_bin NOT NULL,
|
|
objectPHID VARCHAR(64) COLLATE utf8_bin NOT NULL,
|
|
viewPolicy VARCHAR(64) COLLATE utf8_bin NOT NULL,
|
|
editPolicy VARCHAR(64) COLLATE utf8_bin NOT NULL,
|
|
commentPHID VARCHAR(64) COLLATE utf8_bin DEFAULT NULL,
|
|
commentVersion INT UNSIGNED NOT NULL,
|
|
transactionType VARCHAR(32) COLLATE utf8_bin NOT NULL,
|
|
oldValue LONGTEXT COLLATE utf8_bin NOT NULL,
|
|
newValue LONGTEXT COLLATE utf8_bin NOT NULL,
|
|
contentSource LONGTEXT COLLATE utf8_bin NOT NULL,
|
|
metadata LONGTEXT COLLATE utf8_bin NOT NULL,
|
|
dateCreated INT UNSIGNED NOT NULL,
|
|
dateModified INT UNSIGNED NOT NULL,
|
|
UNIQUE KEY `key_phid` (`phid`),
|
|
KEY `key_object` (`objectPHID`)
|
|
) ENGINE=InnoDB, COLLATE utf8_general_ci;
|