Skip to content

Commit 456827d

Browse files
committed
Remove comment
1 parent f3eb4f9 commit 456827d

File tree

3 files changed

+9
-11
lines changed

3 files changed

+9
-11
lines changed

app/models/apple/podcast_delivery.rb

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,6 @@ def self.create_podcast_deliveries(api, episodes)
7373
end
7474

7575
# Don't create deliveries for containers that already have deliveries.
76-
# An alternative workflow would be to swap out the existing delivery and
77-
# upload different audio.
78-
#
79-
# The overall publishing workflow dependes on the assumption that there is
80-
# a delivery present. If we don't create a delivery here, we short-circuit
81-
# subsequent steps (no uploads, no audio linking).
8276
episodes = select_episodes_for_delivery(episodes)
8377
podcast_containers = episodes.map(&:podcast_container)
8478

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
class DropUnusedPodcastContainerCols < ActiveRecord::Migration[7.2]
2+
def change
3+
remove_column :apple_podcast_containers, :source_url, :string
4+
remove_column :apple_podcast_containers, :source_filename, :string
5+
remove_column :apple_podcast_containers, :source_size, :bigint
6+
remove_column :apple_podcast_containers, :enclosure_url, :string
7+
end
8+
end

db/schema.rb

Lines changed: 1 addition & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)