2017-08-31 12:06:56 +08:00
|
|
|
class RenameSeenNotificaitonId < ActiveRecord::Migration[4.2]
|
2013-02-06 03:16:51 +08:00
|
|
|
def up
|
|
|
|
rename_column :users, :seen_notificaiton_id, :seen_notification_id
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
rename_column :users, :seen_notification_id, :seen_notificaiton_id
|
|
|
|
end
|
|
|
|
end
|