这看起来像是一个非常常见的任务,但我找不到一个简单的方法来做到这一点。
我想撤消上次应用的迁移。我本来期望一个简单的命令,比如
PM> Update-Database -TargetMigration:"-1"
相反,我能想到的是:
PM> Get-Migrations
Retrieving migrations that have been applied to the target database.
201208012131302_Add-SystemCategory
201207311827468_CategoryIdIsLong
201207232247409_AutomaticMigration
201207211340509_AutomaticMigration
201207200025294_InitialCreate
PM> Update-Database -TargetMigration:"CategoryIdIsLong"
(至少我可以只使用名称,跳过时间戳......)
有没有更简单的方法?