6 lines
136 B
Ruby
6 lines
136 B
Ruby
class RemoveConfirmedAtFromEvents < ActiveRecord::Migration
|
|
def change
|
|
remove_column :events, :confirmed_at, :timestamp
|
|
end
|
|
end
|