6 lines
108 B
Ruby
6 lines
108 B
Ruby
|
class DropNotifications < ActiveRecord::Migration[5.0]
|
||
|
def change
|
||
|
drop_table :notifications
|
||
|
end
|
||
|
end
|