9 lines
117 B
Ruby
9 lines
117 B
Ruby
class TempDropAlerts < ActiveRecord::Migration
|
|
def up
|
|
drop_table :alerts
|
|
end
|
|
|
|
def down
|
|
#nope
|
|
end
|
|
end
|