21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-05-09 20:18:39 +02:00
chexpire/db/migrate/20180605203552_rename_notifications_delay_to_interval.rb
2018-08-02 00:29:53 +02:00

9 lines
318 B
Ruby

# Copyright (C) 2018 Colin Darie <colin@darie.eu>, Jeremy Lecour <jlecour@evolix.fr>, 2018 Evolix <info@evolix.fr>
# License: GNU AGPL-3+ (see full text in LICENSE file)
class RenameNotificationsDelayToInterval < ActiveRecord::Migration[5.2]
def change
rename_column :notifications, :delay, :interval
end
end