alembic.ini 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. # A generic, single database configuration.
  2. [alembic]
  3. # path to migration scripts
  4. script_location = app/alembic
  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 alembic/versions. When using multiple version
  24. # directories, initial revisions must be specified with --version-path
  25. # version_locations = %(here)s/bar %(here)s/bat alembic/versions
  26. # the output encoding used when revision files
  27. # are written from script.py.mako
  28. # output_encoding = utf-8
  29. # Logging configuration
  30. [loggers]
  31. keys = root,sqlalchemy,alembic
  32. [handlers]
  33. keys = console
  34. [formatters]
  35. keys = generic
  36. [logger_root]
  37. level = WARN
  38. handlers = console
  39. qualname =
  40. [logger_sqlalchemy]
  41. level = WARN
  42. handlers =
  43. qualname = sqlalchemy.engine
  44. [logger_alembic]
  45. level = INFO
  46. handlers =
  47. qualname = alembic
  48. [handler_console]
  49. class = StreamHandler
  50. args = (sys.stderr,)
  51. level = NOTSET
  52. formatter = generic
  53. [formatter_generic]
  54. format = %(levelname)-5.5s [%(name)s] %(message)s
  55. datefmt = %H:%M:%S