internetee-registry/db/migrate/20180823174331_rename_notifications_body_to_text.rb
2021-04-26 18:54:26 +05:00

5 lines
137 B
Ruby

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