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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
c6e7d826
Commit
c6e7d826
authored
May 05, 2016
by
DJ Mountney
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a gitlab:db:configure rake task to handle conditionally seeding or migrating the database.
parent
c04f85a3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
lib/tasks/gitlab/db.rake
lib/tasks/gitlab/db.rake
+11
-0
No files found.
lib/tasks/gitlab/db.rake
View file @
c6e7d826
...
...
@@ -36,5 +36,16 @@ namespace :gitlab do
# Add `IF EXISTS` because cascade could have already deleted a table.
tables
.
each
{
|
t
|
connection
.
execute
(
"DROP TABLE IF EXISTS
#{
t
}
CASCADE"
)
}
end
desc
'Configures the database by running migrate, or by loading the schema and seeding if needed'
task
:configure
=>
:environment
do
# Runs migrate if the schema has already been loaded, otherwise loads the schema and seeds
if
ActiveRecord
::
Base
.
connection
.
table_exists?
'schema_migrations'
Rake
::
Task
[
'db:migrate'
].
invoke
else
Rake
::
Task
[
'db:schema:load'
].
invoke
Rake
::
Task
[
'db:seed_fu'
].
invoke
end
end
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