Guest User

Untitled

a guest
Jan 17th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. internal sealed class Configuration : DbMigrationsConfiguration<MyDbContext>
  2. {
  3. ...
  4. }
  5.  
  6. public partial class Init: DbMigration
  7. {
  8. public override void Up()
  9. {
  10. ...
  11. }
  12.  
  13. public override void Down()
  14. {
  15. ...
  16. }
  17. }
  18.  
  19. public Configuration()
  20. {
  21. AutomaticMigrationsEnabled = true;
  22. MigrationsDirectory = @"MigrationsContext1";
  23. }
Add Comment
Please, Sign In to add comment