clarion/db/migrate/20151018212026_remove_confirmed_at_from_events.rb

6 lines
136 B
Ruby
Raw Normal View History

class RemoveConfirmedAtFromEvents < ActiveRecord::Migration
def change
remove_column :events, :confirmed_at, :timestamp
end
end