docbrown/db/migrate/20240212142953_add_special_behavior_to_billboards.rb
Ben Halpern 205aee8c78
Add billboard for bottom of page with allowance to delay until after reading is finished. (#20616)
* Add delayed behavior

* Add special behavior to billboards

* Fix order for test

* Test clicking outside element when close event is present

* Update app/javascript/packs/billboardAfterRenderActions.js
2024-02-13 11:56:32 -05:00

5 lines
173 B
Ruby

class AddSpecialBehaviorToBillboards < ActiveRecord::Migration[7.0]
def change
add_column :display_ads, :special_behavior, :integer, default: 0, null: false
end
end