Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. public override void Up()
  2. {
  3. CreateTable(
  4. "Log",
  5. c => new
  6. {
  7. Date = c.DateTime(nullable: false),
  8. // Other columns
  9. })
  10. .Index(t => t.Date);
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement