discourse/db/migrate/20121203181719_rename_seen_...

10 lines
236 B
Ruby
Raw Normal View History

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