Commit 9fc3f60f authored by Marco Mariani's avatar Marco Mariani

comment on requested_by, asked_by

parent 27edd2d4
...@@ -14,7 +14,8 @@ CREATE TABLE IF NOT EXISTS partition%(version)s ( ...@@ -14,7 +14,8 @@ CREATE TABLE IF NOT EXISTS partition%(version)s (
slave_instance_list TEXT, slave_instance_list TEXT,
software_type VARCHAR(255), software_type VARCHAR(255),
partition_reference VARCHAR(255), partition_reference VARCHAR(255),
requested_by VARCHAR(255), requested_by VARCHAR(255), -- only used for debugging,
-- slapproxy does not support proper scope
requested_state VARCHAR(255) NOT NULL DEFAULT 'started' requested_state VARCHAR(255) NOT NULL DEFAULT 'started'
); );
...@@ -22,7 +23,8 @@ CREATE TABLE IF NOT EXISTS slave%(version)s ( ...@@ -22,7 +23,8 @@ CREATE TABLE IF NOT EXISTS slave%(version)s (
reference VARCHAR(255) UNIQUE, reference VARCHAR(255) UNIQUE,
connection_xml TEXT, connection_xml TEXT,
hosted_by VARCHAR(255), hosted_by VARCHAR(255),
asked_by VARCHAR(255) asked_by VARCHAR(255) -- only used for debugging,
-- slapproxy does not support proper scope
); );
CREATE TABLE IF NOT EXISTS partition_network%(version)s ( CREATE TABLE IF NOT EXISTS partition_network%(version)s (
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment