diff options
author | Steve Smokowski <ss835w@att.com> | 2019-10-16 16:36:04 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-10-16 16:36:04 +0000 |
commit | 69458c35024eb8b5d8995c51404bce3d0c8cf90d (patch) | |
tree | 751182cbd772d791d18cef1e1d03a860a2261133 /mso-catalog-db/src/test/resources/schema.sql | |
parent | 6749143884670c8479efdb9d79f83b5d38e956c7 (diff) | |
parent | 2700e8117485ea4909678700c84ed232a89af3a8 (diff) |
Merge "Add column to catalog db"
Diffstat (limited to 'mso-catalog-db/src/test/resources/schema.sql')
-rw-r--r-- | mso-catalog-db/src/test/resources/schema.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mso-catalog-db/src/test/resources/schema.sql b/mso-catalog-db/src/test/resources/schema.sql index 7468f62ecb..73370e1078 100644 --- a/mso-catalog-db/src/test/resources/schema.sql +++ b/mso-catalog-db/src/test/resources/schema.sql @@ -120,6 +120,7 @@ CREATE TABLE `cloud_sites` ( `LAST_UPDATED_BY` varchar(120) DEFAULT NULL, `CREATION_TIMESTAMP` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `UPDATE_TIMESTAMP` timestamp NULL DEFAULT CURRENT_TIMESTAMP, + `SUPPORT_FABRIC` bit(1) NOT NULL DEFAULT 1, PRIMARY KEY (`ID`), KEY `FK_cloud_sites_identity_services` (`IDENTITY_SERVICE_ID`), CONSTRAINT `FK_cloud_sites_identity_services` FOREIGN KEY (`IDENTITY_SERVICE_ID`) REFERENCES `identity_services` (`ID`) |