Commit 95d16e75 authored by Jeroen van Baarsen's avatar Jeroen van Baarsen

Merge branch 'remove_sqlite_check' into 'master'

Remove sqlite check in raketask

This is a relic from 4 major releases ago. Time to remove it.

See merge request !2777
parents c9919f3b f8036ec9
......@@ -90,24 +90,6 @@ namespace :gitlab do
end
end
def check_database_is_not_sqlite
print "Database is SQLite ... "
database_config_file = Rails.root.join("config", "database.yml")
unless File.read(database_config_file) =~ /adapter:\s+sqlite/
puts "no".green
else
puts "yes".red
puts "Please fix this by removing the SQLite entry from the database.yml".blue
for_more_information(
"https://github.com/gitlabhq/gitlabhq/wiki/Migrate-from-SQLite-to-MySQL",
see_database_guide
)
fix_and_rerun
end
end
def check_gitlab_config_exists
print "GitLab config exists? ... "
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment