mirror of
				https://github.com/redmine/redmine.git
				synced 2025-11-03 20:06:24 +01:00 
			
		
		
		
	
		
			
	
	
		
			10 lines
		
	
	
		
			214 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
		
		
			
		
	
	
			10 lines
		
	
	
		
			214 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| 
								 | 
							
								class AddStatusDescription < ActiveRecord::Migration[6.1]
							 | 
						||
| 
								 | 
							
								  def up
							 | 
						||
| 
								 | 
							
								    add_column :issue_statuses, :description, :string, :after => :name
							 | 
						||
| 
								 | 
							
								  end
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								  def down
							 | 
						||
| 
								 | 
							
								    remove_column :issue_statuses, :description
							 | 
						||
| 
								 | 
							
								  end
							 | 
						||
| 
								 | 
							
								end
							 |