summaryrefslogtreecommitdiffstats
path: root/store/sql_command_store.go
diff options
context:
space:
mode:
Diffstat (limited to 'store/sql_command_store.go')
-rw-r--r--store/sql_command_store.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/store/sql_command_store.go b/store/sql_command_store.go
index 410f9a287..0db0ba98e 100644
--- a/store/sql_command_store.go
+++ b/store/sql_command_store.go
@@ -36,6 +36,9 @@ func NewSqlCommandStore(sqlStore *SqlStore) CommandStore {
func (s SqlCommandStore) CreateIndexesIfNotExists() {
s.CreateIndexIfNotExists("idx_command_team_id", "Commands", "TeamId")
+ s.CreateIndexIfNotExists("idx_command_update_at", "Commands", "UpdateAt")
+ s.CreateIndexIfNotExists("idx_command_create_at", "Commands", "CreateAt")
+ s.CreateIndexIfNotExists("idx_command_delete_at", "Commands", "DeleteAt")
}
func (s SqlCommandStore) Save(command *model.Command) StoreChannel {