欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

EF Table 'XXX.__migrationhistory' doesn't exist

程序员文章站 2022-04-08 17:16:54
使用Mysql数据库 手动创建表: CREATE TABLE `__MigrationHistory` ( `MigrationId` VARCHAR (128) NOT NULL, `ContextKey` VARCHAR (200) NOT NULL, `Model` longblob not ......

使用mysql数据库

手动创建表:

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`)
)