1
0
mirror of https://github.com/mattermost/focalboard.git synced 2024-11-27 08:31:20 +02:00

Remove collation checks on server startup

This commit is contained in:
Miguel de la Cruz 2022-12-09 15:20:10 +01:00
parent 13be23ddad
commit 7c7eb638f1

View File

@ -249,10 +249,6 @@ func (s *SQLStore) runMigrationSequence(engine *morph.Morph, driver drivers.Driv
return err
}
// always run the collations & charset fix-ups
if mErr := s.RunFixCollationsAndCharsetsMigration(); mErr != nil {
return fmt.Errorf("error running fix collations and charsets migration: %w", mErr)
}
return nil
}