这看起来是一个非常普通的任务,但是我找不到一种简单的方法来完成它。
我想撤消上一次应用的迁移。我本来希望有一个简单的命令,例如
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"
(至少我可以只使用名称,跳过时间戳...)
有没有更简单的方法?