Remove migration base class switcher from RailsSettingsMigration (#29047)
				
					
				
			This commit is contained in:
		@@ -1,12 +1,6 @@
 | 
			
		||||
# frozen_string_literal: true
 | 
			
		||||
 | 
			
		||||
MIGRATION_BASE_CLASS = if ActiveRecord::VERSION::MAJOR >= 5
 | 
			
		||||
                         ActiveRecord::Migration[5.0]
 | 
			
		||||
                       else
 | 
			
		||||
                         ActiveRecord::Migration[4.2]
 | 
			
		||||
                       end
 | 
			
		||||
 | 
			
		||||
class RailsSettingsMigration < MIGRATION_BASE_CLASS
 | 
			
		||||
class RailsSettingsMigration < ActiveRecord::Migration[5.0]
 | 
			
		||||
  def self.up
 | 
			
		||||
    create_table :settings do |t|
 | 
			
		||||
      t.string     :var, null: false
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user