Hi

I was trying to enable the module but getting the below error.

Drupal\Core\Database\DatabaseExceptionWrapper: SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was too long; max key length is 767 bytes: CREATE TABLE {docker_host} ( `dhid` INT unsigned NOT NULL auto_increment COMMENT 'The primary identifier for a docker host.', `uuid` VARCHAR(128) NULL DEFAULT NULL COMMENT 'Unique Key: Universally unique identifier for this entity.', `uid` INT unsigned NOT NULL DEFAULT 0 COMMENT 'The users.uid that created this host.', `name` VARCHAR(255) NOT NULL DEFAULT '' COMMENT 'The name of this docker host, always treated as non-markup plain text.', `host` VARCHAR(128) NOT NULL DEFAULT '' COMMENT 'Docker hostname or ip.', `port` INT unsigned NOT NULL DEFAULT 0 COMMENT 'Docker host port.', `created` INT NOT NULL DEFAULT 0 COMMENT 'Timestamp for when the docker host was created.', `changed` INT NOT NULL DEFAULT 0 COMMENT 'The Unix timestamp when the docker host was most recently saved.', `status` INT NOT NULL DEFAULT 1 COMMENT 'Boolean indicating whether the docker host is active.', PRIMARY KEY (`dhid`), UNIQUE KEY `uuid` (`uuid`), UNIQUE KEY `name` (`name`), INDEX `host` (`host`), INDEX `port` (`port`), INDEX `created` (`created`), INDEX `changed` (`changed`), INDEX `status` (`status`) ) ENGINE = InnoDB DEFAULT CHARACTER SET utf8mb4 COMMENT 'Stores docker host data.'; Array ( ) in drupal_install_schema() (line 122 of /core/includes/schema.inc).

Comments

swati.nuna created an issue.