mirror of
				https://github.com/redmine/redmine.git
				synced 2025-11-03 20:06:24 +01:00 
			
		
		
		
	
		
			
	
	
		
			12 lines
		
	
	
		
			267 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
		
		
			
		
	
	
			12 lines
		
	
	
		
			267 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| 
								 | 
							
								class AddMissingIndexesToUsers < ActiveRecord::Migration
							 | 
						||
| 
								 | 
							
								  def self.up
							 | 
						||
| 
								 | 
							
								    add_index :users, [:id, :type]
							 | 
						||
| 
								 | 
							
								    add_index :users, :auth_source_id
							 | 
						||
| 
								 | 
							
								  end
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								  def self.down
							 | 
						||
| 
								 | 
							
								    remove_index :users, :column => [:id, :type]
							 | 
						||
| 
								 | 
							
								    remove_index :users, :auth_source_id
							 | 
						||
| 
								 | 
							
								  end
							 | 
						||
| 
								 | 
							
								end
							 |