Remove compulsory reindex at startup

This commit is contained in:
Deluan 2020-01-11 11:12:02 -05:00 committed by Deluan Quintão
parent 0c4cbe11be
commit ce1c5e1129

View File

@ -18,9 +18,6 @@ func (r *stormRepository) init(entity interface{}) {
if err := Db().Init(r.bucket); err != nil {
panic(err)
}
if err := Db().ReIndex(r.bucket); err != nil {
panic(err)
}
}
func (r *stormRepository) CountAll() (int64, error) {