| 
									
										
										
										
											2017-01-06 00:21:12 +01:00
										 |  |  | class AddShortcodeToMediaAttachments < ActiveRecord::Migration[5.0] | 
					
						
							|  |  |  |   def up | 
					
						
							|  |  |  |     add_column :media_attachments, :shortcode, :string, null: true, default: nil | 
					
						
							|  |  |  |     add_index :media_attachments, :shortcode, unique: true | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Migrate old links | 
					
						
							|  |  |  |     MediaAttachment.local.update_all('shortcode = id') | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def down | 
					
						
							| 
									
										
										
										
											2018-10-05 01:38:04 +10:00
										 |  |  |     remove_index :media_attachments, :shortcode | 
					
						
							|  |  |  |     remove_column :media_attachments, :shortcode | 
					
						
							| 
									
										
										
										
											2017-01-06 00:21:12 +01:00
										 |  |  |   end | 
					
						
							|  |  |  | end |