1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-09 14:34:35 +00:00
discourse/db/migrate/20121203181719_rename_seen_notificaiton_id.rb

10 lines
241 B
Ruby
Raw Normal View History

class RenameSeenNotificaitonId < ActiveRecord::Migration[4.2]
2013-02-05 14:16:51 -05: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