1
0

env.py 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. from __future__ import with_statement
  2. import logging
  3. from logging.config import fileConfig
  4. from flask import current_app
  5. from alembic import context
  6. # this is the Alembic Config object, which provides
  7. # access to the values within the .ini file in use.
  8. config = context.config
  9. # Interpret the config file for Python logging.
  10. # This line sets up loggers basically.
  11. fileConfig(config.config_file_name)
  12. logger = logging.getLogger('alembic.env')
  13. # add your model's MetaData object here
  14. # for 'autogenerate' support
  15. # from myapp import mymodel
  16. # target_metadata = mymodel.Base.metadata
  17. config.set_main_option(
  18. 'sqlalchemy.url',
  19. str(current_app.extensions['migrate'].db.get_engine().url).replace(
  20. '%', '%%'))
  21. target_metadata = current_app.extensions['migrate'].db.metadata
  22. # other values from the config, defined by the needs of env.py,
  23. # can be acquired:
  24. # my_important_option = config.get_main_option("my_important_option")
  25. # ... etc.
  26. def run_migrations_offline():
  27. """Run migrations in 'offline' mode.
  28. This configures the context with just a URL
  29. and not an Engine, though an Engine is acceptable
  30. here as well. By skipping the Engine creation
  31. we don't even need a DBAPI to be available.
  32. Calls to context.execute() here emit the given string to the
  33. script output.
  34. """
  35. url = config.get_main_option("sqlalchemy.url")
  36. context.configure(
  37. url=url, target_metadata=target_metadata, literal_binds=True
  38. )
  39. with context.begin_transaction():
  40. context.run_migrations()
  41. def run_migrations_online():
  42. """Run migrations in 'online' mode.
  43. In this scenario we need to create an Engine
  44. and associate a connection with the context.
  45. """
  46. # this callback is used to prevent an auto-migration from being generated
  47. # when there are no changes to the schema
  48. # reference: http://alembic.zzzcomputing.com/en/latest/cookbook.html
  49. def process_revision_directives(context, revision, directives):
  50. if getattr(config.cmd_opts, 'autogenerate', False):
  51. script = directives[0]
  52. if script.upgrade_ops.is_empty():
  53. directives[:] = []
  54. logger.info('No changes in schema detected.')
  55. connectable = current_app.extensions['migrate'].db.get_engine()
  56. with connectable.connect() as connection:
  57. context.configure(
  58. connection=connection,
  59. target_metadata=target_metadata,
  60. process_revision_directives=process_revision_directives,
  61. **current_app.extensions['migrate'].configure_args
  62. )
  63. with context.begin_transaction():
  64. context.run_migrations()
  65. if context.is_offline_mode():
  66. run_migrations_offline()
  67. else:
  68. run_migrations_online()