# Alembic configuration for Maestro [alembic] # Path to migration scripts script_location = alembic # Template used to generate migration files file_template = %%(year)d%%(month).2d%%(day).2d_%%(hour).2d%%(minute).2d_%%(rev)s_%%(slug)s # Timezone for timestamps timezone = UTC # Truncate slug length truncate_slug_length = 40 # Output encoding output_encoding = utf-8 # Database URL is set in env.py from STORI_DATABASE_URL (app config). Not in this file for security. [post_write_hooks] [loggers] keys = root,sqlalchemy,alembic [handlers] keys = console [formatters] keys = generic [logger_root] level = WARN handlers = console qualname = [logger_sqlalchemy] level = WARN handlers = qualname = sqlalchemy.engine [logger_alembic] level = INFO handlers = qualname = alembic [handler_console] class = StreamHandler args = (sys.stderr,) level = NOTSET formatter = generic [formatter_generic] format = %(levelname)-5.5s [%(name)s] %(message)s datefmt = %H:%M:%S