Skip to content

Commit

Permalink
Fix bug where MigrationsTable doesn't default to Migrations (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
David Ford authored and bretcope committed Jul 20, 2016
1 parent f68b2f3 commit c3d2b70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mayflower/Options.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ internal string GetConnectionString(DatabaseProvider provider)

internal string GetMigrationsTable()
{
return string.IsNullOrEmpty(MigrationsFolder) ? "Migrations" : MigrationsTable;
return string.IsNullOrEmpty(MigrationsTable) ? "Migrations" : MigrationsTable;
}

internal string GetFolder()
Expand Down

0 comments on commit c3d2b70

Please sign in to comment.