alembic.iniā¢1.82 kB
# Alembic configuration file for Tiger MCP database
[alembic]
# Path to migration scripts
script_location = src/database/migrations
# Template used to generate migration files
file_template = %%(year)d%%(month).2d%%(day).2d_%%(hour).2d%%(minute).2d_%%(rev)s_%%(slug)s
# Timezone to use when rendering the date within the migration file
timezone = UTC
# Max length of characters to apply to the
# "slug" field
truncate_slug_length = 40
# Set to 'true' to run the environment during
# the 'revision' command, regardless of autogenerate
revision_environment = false
# Set to 'true' to allow .pyc and .pyo files without
# a source .py file to be detected as revisions in the
# versions/ directory
sourceless = false
# Version location specification
version_locations = %(here)s/src/database/migrations/versions
# Version path separator; default is 'os'
version_path_separator = :
# The output encoding used when revision files
# are written from script.py.mako
output_encoding = utf-8
# SQLAlchemy URL placeholder - will be replaced by env.py
sqlalchemy.url = postgresql://user:pass@localhost/dbname
[post_write_hooks]
# Post-write hooks define scripts or Python functions that are run
# on newly generated revision scripts.
# Format with black
hooks = black
black.type = console_scripts
black.entrypoint = black
black.options = -l 100
[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