mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
10 lines
236 B
Ruby
10 lines
236 B
Ruby
|
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
|