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