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

5 lines
141 B
Ruby

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