1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-28 09:24:24 +01:00
fab-manager/db/migrate/20230323104727_drop_footprint_debugs.rb
2023-03-24 10:16:21 +01:00

15 lines
322 B
Ruby

# frozen_string_literal: true
# From this migration we delete the footprint_debugs table became useless
class DropFootprintDebugs < ActiveRecord::Migration[6.1]
def change
drop_table :footprint_debugs do |t|
t.string :footprint
t.string :data
t.string :klass
t.timestamps
end
end
end