Fix missing commit statement in migrations/v3.go

pull/195/head
Michael Demetriou 5 years ago
parent db14f04b59
commit bc2016f00f
  1. 6
      migrations/v3.go

@ -19,5 +19,11 @@ func supportActivityPubMentions(db *datastore) error {
return err
}
err = t.Commit()
if err != nil {
t.Rollback()
return err
}
return nil
}

Loading…
Cancel
Save