mirror of
				https://github.com/redmine/redmine.git
				synced 2025-11-03 20:06:24 +01:00 
			
		
		
		
	
		
			
	
	
		
			10 lines
		
	
	
		
			213 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
		
		
			
		
	
	
			10 lines
		
	
	
		
			213 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| 
								 | 
							
								class AddEnumerationsPositionName < ActiveRecord::Migration
							 | 
						||
| 
								 | 
							
								  def up
							 | 
						||
| 
								 | 
							
								    add_column :enumerations, :position_name, :string, :limit => 30
							 | 
						||
| 
								 | 
							
								  end
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								  def down
							 | 
						||
| 
								 | 
							
								    remove_column :enumerations, :position_name
							 | 
						||
| 
								 | 
							
								  end
							 | 
						||
| 
								 | 
							
								end
							 |