Skip to content

Commit

Permalink
chore: tweak migrations string repr
Browse files Browse the repository at this point in the history
  • Loading branch information
vmihailenco committed Aug 29, 2022
1 parent 68dad33 commit 3516802
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion migrate/migration.go
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ func (ms MigrationSlice) String() string {
if i > 0 {
sb.WriteString(", ")
}
sb.WriteString(ms[i].Name)
sb.WriteString(ms[i].String())
}

return sb.String()
Expand Down

0 comments on commit 3516802

Please sign in to comment.