Преглед на файлове

chore(database): Rename table name from `workflow__conversation_variables` to `workflow_conversation_variables`. (#7432)

-LAN- преди 8 месеца
родител
ревизия
2e9084f369
променени са 2 файла, в които са добавени 29 реда и са изтрити 1 реда
  1. 28 0
      api/migrations/versions/2024_08_20_0455-2dbe42621d96_rename_workflow__conversation_variables_.py
  2. 1 1
      api/models/workflow.py

+ 28 - 0
api/migrations/versions/2024_08_20_0455-2dbe42621d96_rename_workflow__conversation_variables_.py

@@ -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 ###

+ 1 - 1
api/models/workflow.py

@@ -724,7 +724,7 @@ class WorkflowAppLog(db.Model):
 
 
 class ConversationVariable(db.Model):
-    __tablename__ = 'workflow__conversation_variables'
+    __tablename__ = 'workflow_conversation_variables'
 
     id: Mapped[str] = db.Column(StringUUID, primary_key=True)
     conversation_id: Mapped[str] = db.Column(StringUUID, nullable=False, primary_key=True)