mirror of
https://github.com/writefreely/writefreely
synced 2024-11-10 11:24:13 +00:00
Fix missing commit statement in migrations/v3.go
This commit is contained in:
parent
db14f04b59
commit
bc2016f00f
1 changed files with 6 additions and 0 deletions
|
@ -19,5 +19,11 @@ func supportActivityPubMentions(db *datastore) error {
|
|||
return err
|
||||
}
|
||||
|
||||
err = t.Commit()
|
||||
if err != nil {
|
||||
t.Rollback()
|
||||
return err
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue