Drop the source upgrade change

We no longer need to point people away from using db:migrate
This commit is contained in:
DJ Mountney 2019-06-20 09:42:25 -07:00
parent e448124fab
commit e1befc9b3f
3 changed files with 5 additions and 1 deletions

View File

@ -324,7 +324,7 @@ sudo -u git -H bundle install --deployment --without development test mysql aws
sudo -u git -H bundle clean
# 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

View File

@ -1,3 +1,5 @@
# frozen_string_literal: true
desc 'Configures the database by running migrate, or by loading the schema and seeding if needed'
task schema_version_check: :environment do
next if ENV['SKIP_SCHEMA_VERSION_CHECK']

View File

@ -1,3 +1,5 @@
# frozen_string_literal: true
require 'rake_helper'
describe 'gitlab:uploads rake tasks' do