1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/db/migrate/20211018121822_add_start_at_to_payment_schedule.rb

10 lines
295 B
Ruby
Raw Normal View History

# frozen_string_literal: true
# From this migration, we allow PaymentSchedules to start later, previously the started
# as soon as they were created.
class AddStartAtToPaymentSchedule < ActiveRecord::Migration[5.2]
def change
add_column :payment_schedules, :start_at, :datetime
end
end