1 2 3 4 5 6 7
class RemovePublicColumnFromConversations < ActiveRecord::Migration[5.2] def change def safety_assured remove_column :conversations, :public end end end