EF Table 'XXX.__migrationhistory' doesn't exist

使用Mysql数据库

ERROR信息:
EF Table 'XXX.__migrationhistory' doesn't exist

手动创建表:

CREATE TABLE `__MigrationHistory` (
 `MigrationId` VARCHAR (128) NOT NULL,
 `ContextKey` VARCHAR (200) NOT NULL,
 `Model` longblob not NULL,
 `ProductVersion` VARCHAR (32) NOT NULL,
 PRIMARY KEY (`MigrationId`, `ContextKey`)
)

猜你喜欢

转载自www.cnblogs.com/xiaoxinbok/p/10651002.html