Skip to content

Commit

Permalink
Bugger that.
Browse files Browse the repository at this point in the history
  • Loading branch information
drunkcod committed Nov 8, 2019
1 parent 3d049eb commit 68cd7e1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion DataBoss/DataBoss.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,9 @@ public int Initialize() {
[DataBossCommand("list")]
public int ListMigrations() {
var message = new StringBuilder();
message.AppendLine("Found migrations:");
foreach (var item in config.GetTargetMigration().Flatten().Where(x => x.HasQueryBatches))
message.AppendFormat($"{0} - {1}\n", item.Info.FullId, item.Info.Name);
message.AppendFormat(" {0} - {1}\n", item.Info.FullId, item.Info.Name);
log.Info(message.ToString());
return 0;
}
Expand Down

0 comments on commit 68cd7e1

Please sign in to comment.