internetee-registry/db/migrate/20180823212823_rename_notifications_queued_to_read.rb
2018-08-24 10:29:09 +03:00

5 lines
136 B
Ruby

class RenameNotificationsQueuedToRead < ActiveRecord::Migration
def change
rename_column :notifications, :queued, :read
end
end