Barry Warsaw pushed to branch release-3.0 at mailman / Mailman

Commits:
aebeaddc by Aurélien Bompard at 2015-09-22T19:31:32Z
Also rename the migration file following 9806f9c7

- - - - -


1 changed file:

- src/mailman/database/alembic/versions/2bb9b382198_workflow_state_table.py


Changes:

=====================================
src/mailman/database/alembic/versions/2bb9b382198_workflow_state_table.py
=====================================
--- a/src/mailman/database/alembic/versions/2bb9b382198_workflow_state_table.py
+++ b/src/mailman/database/alembic/versions/2bb9b382198_workflow_state_table.py
@@ -17,10 +17,10 @@ import sqlalchemy as sa
 def upgrade():
     op.create_table('workflowstate',
         sa.Column('name', sa.Unicode(), nullable=False),
-        sa.Column('key', sa.Unicode(), nullable=False),
+        sa.Column('token', sa.Unicode(), nullable=False),
         sa.Column('step', sa.Unicode(), nullable=True),
         sa.Column('data', sa.Unicode(), nullable=True),
-        sa.PrimaryKeyConstraint('name', 'key')
+        sa.PrimaryKeyConstraint('name', 'token')
         )
 
 



View it on GitLab: 
https://gitlab.com/mailman/mailman/commit/aebeaddc0dfa88946b30f218275cd95766759aa5
_______________________________________________
Mailman-checkins mailing list
Mailman-checkins@python.org
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org

Reply via email to