mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-01-19 08:52:25 +01:00
9 lines
227 B
Ruby
9 lines
227 B
Ruby
# frozen_string_literal: true
|
|
|
|
# add validated_at to slots_reservations
|
|
class AddValidatedAtToSlotsReservations < ActiveRecord::Migration[7.0]
|
|
def change
|
|
add_column :slots_reservations, :validated_at, :datetime
|
|
end
|
|
end
|