Fix old migrations failing because of new version of strong_migrations
				
					
				
			This commit is contained in:
		
							parent
							
								
									8ce2a08875
								
							
						
					
					
						commit
						17fb1c4345
					
				
					 2 changed files with 3 additions and 3 deletions
				
			
		|  | @ -7,6 +7,6 @@ class CreateKeywordMutes < ActiveRecord::Migration[5.1] | |||
|       t.timestamps | ||||
|     end | ||||
| 
 | ||||
|     add_foreign_key :keyword_mutes, :accounts, on_delete: :cascade | ||||
|     safety_assured { add_foreign_key :keyword_mutes, :accounts, on_delete: :cascade } | ||||
|   end | ||||
| end | ||||
|  |  | |||
|  | @ -7,8 +7,8 @@ class CreateBookmarks < ActiveRecord::Migration[5.1] | |||
|       t.timestamps | ||||
|     end | ||||
| 
 | ||||
|     add_foreign_key :bookmarks, :accounts, column: :account_id, on_delete: :cascade | ||||
|     add_foreign_key :bookmarks, :statuses, column: :status_id, on_delete: :cascade | ||||
|     safety_assured { add_foreign_key :bookmarks, :accounts, column: :account_id, on_delete: :cascade } | ||||
|     safety_assured { add_foreign_key :bookmarks, :statuses, column: :status_id, on_delete: :cascade } | ||||
|     add_index :bookmarks, [:account_id, :status_id], unique: true | ||||
|   end | ||||
| end | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue