mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
10 lines
295 B
Ruby
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
|