mirror of
				https://github.com/scinote-eln/scinote-web.git
				synced 2025-11-04 03:59:08 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			240 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			240 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
class RemoveUniqueOrganizationNameIndex < ActiveRecord::Migration[4.2]
 | 
						|
  def up
 | 
						|
    remove_index :teams, :name
 | 
						|
    add_index :teams, :name
 | 
						|
  end
 | 
						|
 | 
						|
  def down
 | 
						|
    remove_index :teams, :name
 | 
						|
    add_index :teams, :name, unique: true
 | 
						|
  end
 | 
						|
end
 |