Skip to content

Commit

Permalink
Ajoute un index sur la table event pour les stats (#906)
Browse files Browse the repository at this point in the history
  • Loading branch information
niladic authored Dec 22, 2020
1 parent 8b96974 commit d81350c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions conf/evolutions/default/45.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# --- !Ups

CREATE INDEX event_idx_code_creation_date_desc ON event (code, creation_date DESC);


# --- !Downs

DROP INDEX event_idx_code_creation_date_desc;

0 comments on commit d81350c

Please sign in to comment.