fix log to logf call

This commit is contained in:
kim 2025-01-06 16:05:06 +00:00
parent 5188de34d5
commit 660fe0df66

View file

@ -78,7 +78,7 @@ func init() {
}
count, _ := res.RowsAffected()
log.Info(ctx, "updated %d statuses", count)
log.Infof(ctx, "updated %d statuses", count)
log.Info(ctx, "removing statuses.updated_at column...")
_, err = tx.NewDropColumn().Model((*oldmodel.Status)(nil)).