Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
hivemind
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
hivemind
Merge requests
!863
Draft: refactor follows and update_nofications indexing
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Draft: refactor follows and update_nofications indexing
267-update-notification-cache
into
develop
Overview
4
Commits
96
Pipelines
0
Changes
672
Open
Dan Notestein
requested to merge
267-update-notification-cache
into
develop
3 weeks ago
Overview
3
Commits
96
Pipelines
0
Changes
26
Expand
Based on
!819
Require
tests_api!258
Edited
1 day ago
by
Krzysztof Leśniak
0
0
Merge request reports
Compare
version 2
version 13
6cd7947e
3 days ago
version 12
51f8b9ae
5 days ago
version 11
7934f467
6 days ago
version 10
58a776b5
1 week ago
version 9
0623acfc
1 week ago
version 8
e26892d5
2 weeks ago
version 7
b6e98c4f
2 weeks ago
version 6
e23b6b20
2 weeks ago
version 5
b324dc58
2 weeks ago
version 4
08bda96a
3 weeks ago
version 3
06934459
3 weeks ago
version 2
1e627fa0
3 weeks ago
version 1
79277ddd
3 weeks ago
develop (HEAD)
and
version 8
latest version
9cfd6db2
96 commits,
1 day ago
version 13
6cd7947e
90 commits,
3 days ago
version 12
51f8b9ae
89 commits,
5 days ago
version 11
7934f467
87 commits,
6 days ago
version 10
58a776b5
92 commits,
1 week ago
version 9
0623acfc
90 commits,
1 week ago
version 8
e26892d5
83 commits,
2 weeks ago
version 7
b6e98c4f
83 commits,
2 weeks ago
version 6
e23b6b20
81 commits,
2 weeks ago
version 5
b324dc58
80 commits,
2 weeks ago
version 4
08bda96a
79 commits,
3 weeks ago
version 3
06934459
78 commits,
3 weeks ago
version 2
1e627fa0
76 commits,
3 weeks ago
version 1
79277ddd
74 commits,
3 weeks ago
Show latest version
26 files
+
287
−
244
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
26
Search (e.g. *.vue) (Ctrl+P)
hive/db/sql_scripts/grant_hivemind_user.sql
0 → 100644
+
11
−
0
Options
GRANT
USAGE
ON
SCHEMA
hivemind_app
to
hivemind_user
;
GRANT
USAGE
ON
SCHEMA
hivemind_endpoints
to
hivemind_user
;
GRANT
USAGE
ON
SCHEMA
hivemind_postgrest_utilities
to
hivemind_user
;
GRANT
SELECT
ON
ALL
TABLES
IN
SCHEMA
hivemind_app
TO
hivemind_user
;
GRANT
SELECT
ON
ALL
TABLES
IN
SCHEMA
hivemind_endpoints
TO
hivemind_user
;
GRANT
SELECT
ON
ALL
TABLES
IN
SCHEMA
hivemind_postgrest_utilities
TO
hivemind_user
;
ALTER
DEFAULT
PRIVILEGES
IN
SCHEMA
hivemind_app
GRANT
SELECT
ON
TABLES
TO
hivemind_user
;
ALTER
DEFAULT
PRIVILEGES
IN
SCHEMA
hivemind_endpoints
GRANT
SELECT
ON
TABLES
TO
hivemind_user
;
ALTER
DEFAULT
PRIVILEGES
IN
SCHEMA
hivemind_postgrest_utilities
GRANT
SELECT
ON
TABLES
TO
hivemind_user
;
Loading