gooderp18绿色标准版
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 line
803B

  1. ##########################################################################
  2. ##
  3. ## pgAdmin 4 - PostgreSQL Tools
  4. ##
  5. ## Copyright (C) 2013 - 2020, The pgAdmin Development Team
  6. ## This software is released under the PostgreSQL Licence
  7. ##
  8. ##########################################################################
  9. """${message}
  10. Revision ID: ${up_revision}
  11. Revises: ${down_revision | comma,n}
  12. Create Date: ${create_date}
  13. """
  14. from alembic import op
  15. import sqlalchemy as sa
  16. ${imports if imports else ""}
  17. # revision identifiers, used by Alembic.
  18. revision = ${repr(up_revision)}
  19. down_revision = ${repr(down_revision)}
  20. branch_labels = ${repr(branch_labels)}
  21. depends_on = ${repr(depends_on)}
  22. def upgrade():
  23. ${upgrades if upgrades else "pass"}
  24. def downgrade():
  25. ${downgrades if downgrades else "pass"}
上海开阖软件有限公司 沪ICP备12045867号-1