FIX: Remove access control post FK from uploads (#9853)

This commit is contained in:
Martin Brennan
2020-05-22 11:20:25 +10:00
committed by GitHub
parent d11c462104
commit c0779df99d
2 changed files with 7 additions and 4 deletions

View File

@ -0,0 +1,7 @@
# frozen_string_literal: true
class RemoveAccessControlPostFk < ActiveRecord::Migration[6.0]
def change
remove_foreign_key :uploads, column: :access_control_post_id
end
end