6 lines
141 B
Ruby
6 lines
141 B
Ruby
class RemoveConfirmedAtFromEvents < ActiveRecord::Migration[4.2]
|
|
def change
|
|
remove_column :events, :confirmed_at, :timestamp
|
|
end
|
|
end
|