* Removed code related to tracking html_variants * Remove code related to HtmlVariant#find_for_test * Remove spec for HtmlVariant#success_rate * Ignore html_variants.success_rate * Drop tables related to HtmlVariant tracking
12 lines
260 B
Ruby
12 lines
260 B
Ruby
class DropHtmlVariantTrackingTables < ActiveRecord::Migration[7.0]
|
|
def up
|
|
safety_assured do
|
|
drop_table :html_variant_trials
|
|
drop_table :html_variant_successes
|
|
end
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigratione
|
|
end
|
|
end
|