Files
openfoodnetwork/db/migrate/20200404083008_drop_trackers_table.rb
2021-04-13 15:51:14 -07:00

15 lines
306 B
Ruby

class DropTrackersTable < ActiveRecord::Migration[4.2]
def up
drop_table :spree_trackers
end
def down
create_table :spree_trackers do |t|
t.string :environment
t.string :analytics_id
t.boolean :active, :default => true
t.timestamps
end
end
end