11 lines
		
	
	
	
		
			222 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			222 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
class IdsToBigints2 < ActiveRecord::Migration[5.1]
 | 
						|
  def up
 | 
						|
    change_column :statuses_tags, :tag_id, :bigint
 | 
						|
  end
 | 
						|
 | 
						|
  def down
 | 
						|
    change_column :statuses_tags, :tag_id, :integer
 | 
						|
  end
 | 
						|
end
 |