internetee-registry/db/migrate/20180823174331_rename_notifications_body_to_text.rb
2018-08-23 22:33:30 +03:00

5 lines
132 B
Ruby

class RenameNotificationsBodyToText < ActiveRecord::Migration
def change
rename_column :notifications, :body, :text
end
end