-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(database): Rename table name from `workflow__conversation_varia…
…bles` to `workflow_conversation_variables`. (#7432)
- Loading branch information
Showing
2 changed files
with
29 additions
and
1 deletion.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
...rations/versions/2024_08_20_0455-2dbe42621d96_rename_workflow__conversation_variables_.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
"""rename workflow__conversation_variables to workflow_conversation_variables | ||
Revision ID: 2dbe42621d96 | ||
Revises: a6be81136580 | ||
Create Date: 2024-08-20 04:55:38.160010 | ||
""" | ||
from alembic import op | ||
|
||
import models as models | ||
|
||
# revision identifiers, used by Alembic. | ||
revision = '2dbe42621d96' | ||
down_revision = 'a6be81136580' | ||
branch_labels = None | ||
depends_on = None | ||
|
||
|
||
def upgrade(): | ||
# ### commands auto generated by Alembic - please adjust! ### | ||
op.rename_table('workflow__conversation_variables', 'workflow_conversation_variables') | ||
# ### end Alembic commands ### | ||
|
||
|
||
def downgrade(): | ||
# ### commands auto generated by Alembic - please adjust! ### | ||
op.rename_table('workflow_conversation_variables', 'workflow__conversation_variables') | ||
# ### end Alembic commands ### |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters