Innopolis University DevOps Playground
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
Ejabberd
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Сергей Титов
Ejabberd
Commits
0eb6b942
Commit
0eb6b942
authored
10 years ago
by
Alexey Shchepin
Committed by
Christophe Romain
10 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add a missed SQL index on privacy_list_data table
parent
6b67a66a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
sql/mysql.sql
+2
-0
2 additions, 0 deletions
sql/mysql.sql
sql/pg.sql
+2
-0
2 additions, 0 deletions
sql/pg.sql
with
4 additions
and
0 deletions
sql/mysql.sql
+
2
−
0
View file @
0eb6b942
...
...
@@ -161,6 +161,8 @@ CREATE TABLE privacy_list_data (
)
ENGINE
=
InnoDB
CHARACTER
SET
utf8
;
CREATE
INDEX
i_privacy_list_data_id
ON
privacy_list_data
(
id
);
CREATE
INDEX
i_privacy_list_data_id
USING
BTREE
ON
privacy_list_data
(
id
);
CREATE
TABLE
private_storage
(
username
varchar
(
250
)
NOT
NULL
,
namespace
varchar
(
250
)
NOT
NULL
,
...
...
This diff is collapsed.
Click to expand it.
sql/pg.sql
+
2
−
0
View file @
0eb6b942
...
...
@@ -161,6 +161,8 @@ CREATE TABLE privacy_list_data (
match_presence_out
boolean
NOT
NULL
);
CREATE
INDEX
i_privacy_list_data_id
ON
privacy_list_data
USING
btree
(
id
);
CREATE
TABLE
private_storage
(
username
text
NOT
NULL
,
namespace
text
NOT
NULL
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment