diff --git a/db/migrate/20240125102050_drop_deleted_at_from_promotion_actions.rb b/db/migrate/20240125102050_drop_deleted_at_from_promotion_actions.rb new file mode 100644 index 00000000..8b068249 --- /dev/null +++ b/db/migrate/20240125102050_drop_deleted_at_from_promotion_actions.rb @@ -0,0 +1,5 @@ +class DropDeletedAtFromPromotionActions < ActiveRecord::Migration[7.0] + def change + remove_column :friendly_promotion_actions, :deleted_at, :datetime, null: true + end +end