21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-06-26 19:12:53 +02:00
chexpire/db/migrate/20180605203552_rename_notifications_delay_to_interval.rb

6 lines
153 B
Ruby
Raw Normal View History

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