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

9 lines
318 B
Ruby
Raw Permalink Normal View History

# 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