* feat: create a migration to add the display ad name column to the tanle * feat: add a display ad name to the interface * feat: add a display ad name after create * feat: whoops the migration file * feat: add a DUS to update previous Display Ads names * fix: test * refactor: update the name after_save * fix: add name to params
5 lines
123 B
Ruby
5 lines
123 B
Ruby
class AddNameToDisplayAd < ActiveRecord::Migration[7.0]
|
|
def change
|
|
add_column :display_ads, :name, :string
|
|
end
|
|
end
|