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
iv
gitlab-ce
Commits
3e6181db
Commit
3e6181db
authored
May 07, 2015
by
Valery Sizov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make migrations reversible
parent
93a2cc09
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
db/migrate/20150423033240_add_default_project_visibililty_to_application_settings.rb
...dd_default_project_visibililty_to_application_settings.rb
+5
-1
db/migrate/20150429002313_remove_abandoned_group_members_records.rb
.../20150429002313_remove_abandoned_group_members_records.rb
+4
-1
No files found.
db/migrate/20150423033240_add_default_project_visibililty_to_application_settings.rb
View file @
3e6181db
class
AddDefaultProjectVisibililtyToApplicationSettings
<
ActiveRecord
::
Migration
def
change
def
up
add_column
:application_settings
,
:default_project_visibility
,
:integer
visibility
=
Settings
.
gitlab
.
default_projects_features
[
'visibility_level'
]
execute
(
"update application_settings set default_project_visibility =
#{
visibility
}
"
)
end
def
down
remove_column
:application_settings
,
:default_project_visibility
end
end
db/migrate/20150429002313_remove_abandoned_group_members_records.rb
View file @
3e6181db
class
RemoveAbandonedGroupMembersRecords
<
ActiveRecord
::
Migration
def
change
def
up
execute
(
"DELETE FROM members WHERE type = 'GroupMember' AND source_id NOT IN(\
SELECT id FROM namespaces WHERE type='Group')"
)
end
def
down
end
end
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