Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
a0c79f9d
Commit
a0c79f9d
authored
May 17, 2018
by
Andreas Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add NOT NULL constraints to project_authorizations.
Closes #32258.
parent
7e78eacd
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
48 additions
and
5 deletions
+48
-5
app/models/user.rb
app/models/user.rb
+1
-1
changelogs/unreleased/ab-43706-composite-primary-keys.yml
changelogs/unreleased/ab-43706-composite-primary-keys.yml
+5
-0
db/migrate/20180517082340_add_not_null_constraints_to_project_authorizations.rb
...340_add_not_null_constraints_to_project_authorizations.rb
+38
-0
db/schema.rb
db/schema.rb
+4
-4
No files found.
app/models/user.rb
View file @
a0c79f9d
...
...
@@ -109,7 +109,7 @@ class User < ActiveRecord::Base
has_many
:created_projects
,
foreign_key: :creator_id
,
class_name:
'Project'
has_many
:users_star_projects
,
dependent: :destroy
# rubocop:disable Cop/ActiveRecordDependent
has_many
:starred_projects
,
through: :users_star_projects
,
source: :project
has_many
:project_authorizations
has_many
:project_authorizations
,
dependent: :delete_all
# rubocop:disable Cop/ActiveRecordDependent
has_many
:authorized_projects
,
through: :project_authorizations
,
source: :project
has_many
:user_interacted_projects
...
...
changelogs/unreleased/ab-43706-composite-primary-keys.yml
0 → 100644
View file @
a0c79f9d
---
title
:
Add NOT NULL constraints to project_authorizations.
merge_request
:
18980
author
:
type
:
other
db/migrate/20180517082340_add_not_null_constraints_to_project_authorizations.rb
0 → 100644
View file @
a0c79f9d
class
AddNotNullConstraintsToProjectAuthorizations
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
# Set this constant to true if this migration requires downtime.
DOWNTIME
=
false
def
up
if
Gitlab
::
Database
.
postgresql?
# One-pass version for PostgreSQL
execute
<<~
SQL
ALTER TABLE project_authorizations
ALTER COLUMN user_id SET NOT NULL,
ALTER COLUMN project_id SET NOT NULL,
ALTER COLUMN access_level SET NOT NULL
SQL
else
change_column_null
:project_authorizations
,
:user_id
,
false
change_column_null
:project_authorizations
,
:project_id
,
false
change_column_null
:project_authorizations
,
:access_level
,
false
end
end
def
down
if
Gitlab
::
Database
.
postgresql?
# One-pass version for PostgreSQL
execute
<<~
SQL
ALTER TABLE project_authorizations
ALTER COLUMN user_id DROP NOT NULL,
ALTER COLUMN project_id DROP NOT NULL,
ALTER COLUMN access_level DROP NOT NULL
SQL
else
change_column_null
:project_authorizations
,
:user_id
,
true
change_column_null
:project_authorizations
,
:project_id
,
true
change_column_null
:project_authorizations
,
:access_level
,
true
end
end
end
db/schema.rb
View file @
a0c79f9d
...
...
@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord
::
Schema
.
define
(
version:
2018051
2061621
)
do
ActiveRecord
::
Schema
.
define
(
version:
2018051
7082340
)
do
# These are extensions that must be enabled in order to support this database
enable_extension
"plpgsql"
...
...
@@ -1449,9 +1449,9 @@ ActiveRecord::Schema.define(version: 20180512061621) do
add_index
"personal_access_tokens"
,
[
"user_id"
],
name:
"index_personal_access_tokens_on_user_id"
,
using: :btree
create_table
"project_authorizations"
,
id:
false
,
force: :cascade
do
|
t
|
t
.
integer
"user_id"
t
.
integer
"project_id"
t
.
integer
"access_level"
t
.
integer
"user_id"
,
null:
false
t
.
integer
"project_id"
,
null:
false
t
.
integer
"access_level"
,
null:
false
end
add_index
"project_authorizations"
,
[
"project_id"
],
name:
"index_project_authorizations_on_project_id"
,
using: :btree
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment