alembic.ini.mako 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. # a multi-database configuration.
  2. [alembic]
  3. # path to migration scripts
  4. script_location = ${script_location}
  5. # template used to generate migration files
  6. # file_template = %%(rev)s_%%(slug)s
  7. # timezone to use when rendering the date
  8. # within the migration file as well as the filename.
  9. # string value is passed to dateutil.tz.gettz()
  10. # leave blank for localtime
  11. # timezone =
  12. # max length of characters to apply to the
  13. # "slug" field
  14. #truncate_slug_length = 40
  15. # set to 'true' to run the environment during
  16. # the 'revision' command, regardless of autogenerate
  17. # revision_environment = false
  18. # set to 'true' to allow .pyc and .pyo files without
  19. # a source .py file to be detected as revisions in the
  20. # versions/ directory
  21. # sourceless = false
  22. # version location specification; this defaults
  23. # to ${script_location}/versions. When using multiple version
  24. # directories, initial revisions must be specified with --version-path
  25. # version_locations = %(here)s/bar %(here)s/bat ${script_location}/versions
  26. # the output encoding used when revision files
  27. # are written from script.py.mako
  28. # output_encoding = utf-8
  29. databases = engine1, engine2
  30. [engine1]
  31. sqlalchemy.url = driver://user:pass@localhost/dbname
  32. [engine2]
  33. sqlalchemy.url = driver://user:pass@localhost/dbname2
  34. # Logging configuration
  35. [loggers]
  36. keys = root,sqlalchemy,alembic
  37. [handlers]
  38. keys = console
  39. [formatters]
  40. keys = generic
  41. [logger_root]
  42. level = WARN
  43. handlers = console
  44. qualname =
  45. [logger_sqlalchemy]
  46. level = WARN
  47. handlers =
  48. qualname = sqlalchemy.engine
  49. [logger_alembic]
  50. level = INFO
  51. handlers =
  52. qualname = alembic
  53. [handler_console]
  54. class = StreamHandler
  55. args = (sys.stderr,)
  56. level = NOTSET
  57. formatter = generic
  58. [formatter_generic]
  59. format = %(levelname)-5.5s [%(name)s] %(message)s
  60. datefmt = %H:%M:%S