1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-28 09:24:24 +01:00
fab-manager/db/migrate/20211018121822_add_start_at_to_payment_schedule.rb
2021-10-18 15:19:58 +02:00

10 lines
295 B
Ruby

# 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