21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-04-29 15:30:49 +02:00
chexpire/db/migrate/20180724075445_add_roundrobin_to_checks.rb

8 lines
290 B
Ruby

# Copyright (C) 2018 Juliette Cougnoux <jcougnoux@evolix.fr>, 2018 Evolix <info@evolix.fr>
# License: GNU AGPL-3+ (see full text in LICENSE file)
class AddRoundrobinToChecks < ActiveRecord::Migration[5.2]
def change
add_column :checks, :round_robin, :boolean, default: true
end
end