21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-05-02 08:50:49 +02:00
chexpire/db/migrate/20180605203552_rename_notifications_delay_to_interval.rb

6 lines
147 B
Ruby

class RenameNotificationsDelayToInterval < ActiveRecord::Migration[5.2]
def change
rename_column :notifications, :delay, :interval
end
end