2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-12 21:10:47 +08:00
discourse/db/migrate/20121203181719_rename_seen_notificaiton_id.rb

9 lines
241 B
Ruby

class RenameSeenNotificaitonId < ActiveRecord::Migration[4.2]
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