Commit e1befc9b authored by DJ Mountney's avatar DJ Mountney

Drop the source upgrade change

We no longer need to point people away from using db:migrate
parent e448124f
...@@ -324,7 +324,7 @@ sudo -u git -H bundle install --deployment --without development test mysql aws ...@@ -324,7 +324,7 @@ sudo -u git -H bundle install --deployment --without development test mysql aws
sudo -u git -H bundle clean sudo -u git -H bundle clean
# Run database migrations # Run database migrations
sudo -u git -H bundle exec rake gitlab:db:configure RAILS_ENV=production sudo -u git -H bundle exec rake db:migrate RAILS_ENV=production
# Compile GetText PO files # Compile GetText PO files
......
# frozen_string_literal: true
desc 'Configures the database by running migrate, or by loading the schema and seeding if needed' desc 'Configures the database by running migrate, or by loading the schema and seeding if needed'
task schema_version_check: :environment do task schema_version_check: :environment do
next if ENV['SKIP_SCHEMA_VERSION_CHECK'] next if ENV['SKIP_SCHEMA_VERSION_CHECK']
......
# frozen_string_literal: true
require 'rake_helper' require 'rake_helper'
describe 'gitlab:uploads rake tasks' do describe 'gitlab:uploads rake tasks' do
......
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