mirror of
https://github.com/stashapp/stash.git
synced 2025-12-09 18:04:33 +01:00
* Rename manager.instance to Manager * Show dialog message on fatal error on Windows * Hide console windows explicitly on icon launch Gets rid of the windowsgui flag, which causes all sorts of issues. Instead, checks if stash was launched from the icon, and if so hides the console. * Remove fixconsole * Add changelog entries
8 lines
194 B
Go
8 lines
194 B
Go
package manager
|
|
|
|
import "context"
|
|
|
|
// PostMigrate is executed after migrations have been executed.
|
|
func (s *Manager) PostMigrate(ctx context.Context) {
|
|
setInitialMD5Config(ctx, s.TxnManager)
|
|
}
|