mirror of
				https://github.com/mastodon/mastodon.git
				synced 2025-10-29 20:21:29 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			191 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			191 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| 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
 | 
