1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/db/migrate/20200721162939_create_footprint_debugs.rb
2020-07-21 19:25:21 +02:00

16 lines
358 B
Ruby

# frozen_string_literal: true
# This table saves the original data used to create footprints, this allows
# to debug invalid footprints
class CreateFootprintDebugs < ActiveRecord::Migration[5.2]
def change
create_table :footprint_debugs do |t|
t.string :footprint
t.string :data
t.string :klass
t.timestamps
end
end
end