mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-28 09:24:24 +01:00
15 lines
322 B
Ruby
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
|