Skip to content

Commit

Permalink
fix: restore "replysendstatuses" default data from Alembic version 86…
Browse files Browse the repository at this point in the history
…b01b6290da
  • Loading branch information
cfm committed Jun 27, 2022
1 parent f8cef90 commit e3c81a4
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions alembic/versions/d7c8af95bc8e_.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,19 @@ def upgrade():
)
# ### end Alembic commands ###

# Set the initial in-progress send statuses: PENDING, FAILED (from original Alembic version
# 86b01b6290da).
conn = op.get_bind()
conn.execute(
"""
INSERT INTO replysendstatuses
('name')
VALUES
('PENDING'),
('FAILED');
"""
)


def downgrade():
# ### commands auto generated by Alembic - please adjust! ###
Expand Down

0 comments on commit e3c81a4

Please sign in to comment.