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

9 lines
192 B
Ruby
Raw Normal View History

2023-05-25 20:17:37 +02:00
# frozen_string_literal: true
# add validated_at to child
class AddValidatedAtToChild < ActiveRecord::Migration[7.0]
def change
add_column :children, :validated_at, :datetime
end
end