执行 

set global innodb_large_prefix='on';
set global innodb_file_format='Barracuda';
set global innodb_file_per_table ='on'

然后

脚本加上 红色部分

-- 导出 表 identityserver.apiresources 结构
DROP TABLE IF EXISTS `apiresources`;
CREATE TABLE IF NOT EXISTS `apiresources` (
`Id` int(11) NOT NULL AUTO_INCREMENT,
`Enabled` tinyint(1) NOT NULL,
`Name` varchar(200) NOT NULL,
`DisplayName` varchar(200) DEFAULT NULL,
`Description` varchar(1000) DEFAULT NULL,
`AllowedAccessTokenSigningAlgorithms` varchar(100) DEFAULT NULL,
`ShowInDiscoveryDocument` tinyint(1) NOT NULL,
`Created` datetime(6) NOT NULL,
`Updated` datetime(6) DEFAULT NULL,
`LastAccessed` datetime(6) DEFAULT NULL,
`NonEditable` tinyint(1) NOT NULL,
PRIMARY KEY (`Id`),
UNIQUE KEY `IX_ApiResources_Name` (`Name`)
) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4 ROW_FORMAT=DYNAMIC;

 

相关文章:

  • 2022-12-23
  • 2021-08-21
  • 2022-12-23
  • 2022-12-23
  • 2021-07-28
  • 2022-02-16
  • 2021-12-15
  • 2022-12-23
猜你喜欢
  • 2022-02-27
  • 2021-07-20
  • 2021-10-28
  • 2022-12-23
  • 2022-12-23
  • 2021-12-17
相关资源
相似解决方案