Skip to content
Snippets Groups Projects
Commit c71da3b4 authored by Pavel Tetauer's avatar Pavel Tetauer
Browse files

Added index for date_id

parent d18bc313
No related branches found
No related tags found
1 merge request!30Analytics persistance
......@@ -31,4 +31,5 @@ CREATE TABLE daily_transaction
constraint fk_date_id foreign key (date_id) references date_dim (id)
);
CREATE INDEX account_id_index ON daily_transaction (account_id);
\ No newline at end of file
CREATE INDEX account_id_index ON daily_transaction (account_id);
CREATE INDEX date_id_index ON daily_transaction (date_id);
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment