Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
Missing indexes in postgre ajxp_user_rights
Browse files Browse the repository at this point in the history
  • Loading branch information
cdujeu committed Sep 16, 2014
1 parent 11c9484 commit c5bf493
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions core/src/plugins/conf.sql/create.pgsql
Expand Up @@ -11,6 +11,9 @@ CREATE TABLE ajxp_user_rights (
rights text NOT NULL
);

CREATE INDEX ajxp_user_rights_i ON ajxp_user_rights(repo_uuid);
CREATE INDEX ajxp_user_rights_k ON ajxp_user_rights(login);

CREATE TABLE ajxp_user_prefs (
rid serial PRIMARY KEY,
login varchar(255) NOT NULL,
Expand Down

0 comments on commit c5bf493

Please sign in to comment.