6 lines
133 B
Ruby
6 lines
133 B
Ruby
class DeleteRecipientIdFromCart < ActiveRecord::Migration
|
|
def change
|
|
remove_column :carts, :recipient_destination_id
|
|
end
|
|
end
|