Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Retry asset wait file processing timeouts #1150

Open
wants to merge 18 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Bifucated uploaded/delivered states match
svevang committed Nov 5, 2024
commit 3cc10c8efec75a3df249ae493329e2f40f917022
7 changes: 7 additions & 0 deletions db/migrate/20241029181938_new_file_uploaded_state.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
class NewFileUploadedState < ActiveRecord::Migration[7.2]
def change
add_column :apple_episode_delivery_statuses, :uploaded, :boolean, default: false

# Set the new column to match the delivered column
execute(<<~SQL
UPDATE apple_episode_delivery_statuses
SET uploaded = delivered
SQL
)
end
end