mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +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
14 lines
561 B
SQL
14 lines
561 B
SQL
CREATE TABLE {$NAMESPACE}_almanac.almanac_binding (
|
|
id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
|
|
phid VARBINARY(64) NOT NULL,
|
|
servicePHID VARBINARY(64) NOT NULL,
|
|
devicePHID VARBINARY(64) NOT NULL,
|
|
interfacePHID VARBINARY(64) NOT NULL,
|
|
mailKey BINARY(20) NOT NULL,
|
|
dateCreated INT UNSIGNED NOT NULL,
|
|
dateModified INT UNSIGNED NOT NULL,
|
|
UNIQUE KEY `key_phid` (phid),
|
|
UNIQUE KEY `key_service` (servicePHID, interfacePHID),
|
|
KEY `key_device` (devicePHID),
|
|
KEY `key_interface` (interfacePHID)
|
|
) ENGINE=InnoDB, COLLATE utf8_general_ci;
|