Page Menu
Home
Musing Studio
Search
Configure Global Search
Log In
Files
F10387033
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
788 B
Subscribers
None
View Options
diff --git a/migrations/v9.go b/migrations/v9.go
index 5ef991f..3766cbe 100644
--- a/migrations/v9.go
+++ b/migrations/v9.go
@@ -1,29 +1,33 @@
/*
* Copyright © 2020 A Bunch Tell LLC.
*
* This file is part of WriteFreely.
*
* WriteFreely is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, included
* in the LICENSE file in this source code package.
*/
package migrations
func optimizeDrafts(db *datastore) error {
t, err := db.Begin()
+ if err != nil {
+ t.Rollback()
+ return err
+ }
_, err = t.Exec(`ALTER TABLE posts ADD INDEX(owner_id, id)`)
if err != nil {
t.Rollback()
return err
}
err = t.Commit()
if err != nil {
t.Rollback()
return err
}
return nil
}
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Sun, Nov 24, 10:05 PM (1 d, 3 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3106412
Attached To
rWF WriteFreely
Event Timeline
Log In to Comment