# Alembic configuration file for Discord Quote Bot [alembic] # Path to migration scripts script_location = migrations # Template used to generate migration files file_template = %%(year)d%%(month).2d%%(day).2d_%%(hour).2d%%(minute).2d_%%(rev)s_%%(slug)s # Timezone for migration timestamps timezone = UTC # Truncate slug to 40 chars truncate_slug_length = 40 # Revision identifier format revision_environment = false sqlalchemy.url = postgresql://quotes_user:secure_password@localhost:5432/quotes_db # Logging configuration [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