Skip to content

Commit

Permalink
Merge pull request #78 from kmyk/feature/create-index
Browse files Browse the repository at this point in the history
Create an index on the submissions table
  • Loading branch information
kenkoooo committed Dec 22, 2018
2 parents 45ab2b7 + b644cab commit cc62f31
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions atcoder-problems-backend/src/test/resources/test-db.sql
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ CREATE TABLE submissions (
execution_time INT,
PRIMARY KEY (id)
);
CREATE INDEX ON submissions (user_id);

DROP TABLE IF EXISTS problems;
CREATE TABLE problems (
Expand Down

0 comments on commit cc62f31

Please sign in to comment.