-
Notifications
You must be signed in to change notification settings - Fork 1
/
alembic.ini
46 lines (35 loc) · 848 Bytes
/
alembic.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[alembic]
# path to migration scripts
script_location = src/backend/alembic
# template used to generate migration files
file_template = %%(rev)s_%%(slug)s
# timezone to use when rendering the date within the migration file
# as well as the filename.
timezone = UTC
[loggers]
keys = root,sqlalchemy,alembic
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = WARN
handlers = console
qualname =
[logger_sqlalchemy]
level = WARN
handlers = console
qualname = sqlalchemy.engine
[logger_alembic]
level = INFO
handlers = console
qualname = alembic
[handler_console]
class = StreamHandler
args = (sys.stderr,)
level = NOTSET
formatter = generic
[formatter_generic]
format = %(levelname)-5.5s [%(name)s] %(message)s
[alembic:env]
sqlalchemy.url = postgresql+asyncpg://postgres:phatle1005@localhost:5432/Online_Book_Store