Farmbot-Web-App/db/migrate/20180403211523_remove_args_...

8 lines
193 B
Ruby

class RemoveArgsAndBodyFromSequence < ActiveRecord::Migration[5.1]
safety_assured
def change
remove_column :sequences, :args, :text
remove_column :sequences, :body, :text
end
end