mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 02:43:49 +08:00
8 lines
182 B
Ruby
8 lines
182 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class RemoveAccessControlPostFk < ActiveRecord::Migration[6.0]
|
||
|
def change
|
||
|
remove_foreign_key :uploads, column: :access_control_post_id
|
||
|
end
|
||
|
end
|