Skip to content

Commit

Permalink
Migrate to latest Play version - addresses #92
Browse files Browse the repository at this point in the history
Introduces performance improvement on the database table log_entry.
  • Loading branch information
resamsel committed Nov 9, 2020
1 parent ea53203 commit fc3b70f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions conf/evolutions/default/26.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# --- !Ups

create index ix_log_entry_type on log_entry (type);
create index ix_log_entry_when_created on log_entry (when_created);

# --- !Downs

drop index ix_log_entry_type;
drop index ix_log_entry_when_created;

0 comments on commit fc3b70f

Please sign in to comment.