alembic 1.14.0__py3-none-any.whl → 1.15.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. alembic/__init__.py +1 -1
  2. alembic/autogenerate/api.py +2 -2
  3. alembic/autogenerate/compare.py +11 -23
  4. alembic/autogenerate/render.py +29 -22
  5. alembic/command.py +3 -1
  6. alembic/context.pyi +5 -2
  7. alembic/ddl/base.py +2 -2
  8. alembic/ddl/impl.py +8 -9
  9. alembic/ddl/mysql.py +1 -2
  10. alembic/ddl/postgresql.py +7 -6
  11. alembic/ddl/sqlite.py +13 -1
  12. alembic/op.pyi +1 -2
  13. alembic/operations/base.py +1 -2
  14. alembic/operations/batch.py +5 -4
  15. alembic/operations/ops.py +1 -2
  16. alembic/operations/toimpl.py +0 -13
  17. alembic/runtime/environment.py +2 -2
  18. alembic/runtime/migration.py +4 -4
  19. alembic/testing/assertions.py +2 -3
  20. alembic/testing/env.py +62 -78
  21. alembic/testing/fixtures.py +3 -15
  22. alembic/testing/requirements.py +1 -35
  23. alembic/testing/suite/test_autogen_computed.py +2 -62
  24. alembic/testing/warnings.py +0 -9
  25. alembic/util/__init__.py +0 -7
  26. alembic/util/compat.py +1 -0
  27. alembic/util/exc.py +20 -1
  28. alembic/util/messaging.py +1 -4
  29. alembic/util/sqla_compat.py +72 -238
  30. {alembic-1.14.0.dist-info → alembic-1.15.0.dist-info}/LICENSE +1 -1
  31. {alembic-1.14.0.dist-info → alembic-1.15.0.dist-info}/METADATA +9 -12
  32. alembic-1.15.0.dist-info/RECORD +74 -0
  33. {alembic-1.14.0.dist-info → alembic-1.15.0.dist-info}/WHEEL +1 -1
  34. alembic/templates/async/README +0 -1
  35. alembic/templates/async/alembic.ini.mako +0 -115
  36. alembic/templates/async/script.py.mako +0 -26
  37. alembic/templates/generic/README +0 -1
  38. alembic/templates/generic/alembic.ini.mako +0 -117
  39. alembic/templates/generic/script.py.mako +0 -26
  40. alembic/templates/multidb/README +0 -12
  41. alembic/templates/multidb/alembic.ini.mako +0 -122
  42. alembic/templates/multidb/script.py.mako +0 -47
  43. alembic-1.14.0.dist-info/RECORD +0 -83
  44. {alembic-1.14.0.dist-info → alembic-1.15.0.dist-info}/entry_points.txt +0 -0
  45. {alembic-1.14.0.dist-info → alembic-1.15.0.dist-info}/top_level.txt +0 -0
@@ -1,115 +0,0 @@
1
- # A generic, single database configuration.
2
-
3
- [alembic]
4
- # path to migration scripts.
5
- # Use forward slashes (/) also on windows to provide an os agnostic path
6
- script_location = ${script_location}
7
-
8
- # template used to generate migration file names; The default value is %%(rev)s_%%(slug)s
9
- # Uncomment the line below if you want the files to be prepended with date and time
10
- # file_template = %%(year)d_%%(month).2d_%%(day).2d_%%(hour).2d%%(minute).2d-%%(rev)s_%%(slug)s
11
-
12
- # sys.path path, will be prepended to sys.path if present.
13
- # defaults to the current working directory.
14
- prepend_sys_path = .
15
-
16
- # timezone to use when rendering the date within the migration file
17
- # as well as the filename.
18
- # If specified, requires the python>=3.9 or backports.zoneinfo library.
19
- # Any required deps can installed by adding `alembic[tz]` to the pip requirements
20
- # string value is passed to ZoneInfo()
21
- # leave blank for localtime
22
- # timezone =
23
-
24
- # max length of characters to apply to the "slug" field
25
- # truncate_slug_length = 40
26
-
27
- # set to 'true' to run the environment during
28
- # the 'revision' command, regardless of autogenerate
29
- # revision_environment = false
30
-
31
- # set to 'true' to allow .pyc and .pyo files without
32
- # a source .py file to be detected as revisions in the
33
- # versions/ directory
34
- # sourceless = false
35
-
36
- # version location specification; This defaults
37
- # to ${script_location}/versions. When using multiple version
38
- # directories, initial revisions must be specified with --version-path.
39
- # The path separator used here should be the separator specified by "version_path_separator" below.
40
- # version_locations = %(here)s/bar:%(here)s/bat:${script_location}/versions
41
-
42
- # version path separator; As mentioned above, this is the character used to split
43
- # version_locations. The default within new alembic.ini files is "os", which uses os.pathsep.
44
- # If this key is omitted entirely, it falls back to the legacy behavior of splitting on spaces and/or commas.
45
- # Valid values for version_path_separator are:
46
- #
47
- # version_path_separator = :
48
- # version_path_separator = ;
49
- # version_path_separator = space
50
- # version_path_separator = newline
51
- version_path_separator = os # Use os.pathsep. Default configuration used for new projects.
52
-
53
- # set to 'true' to search source files recursively
54
- # in each "version_locations" directory
55
- # new in Alembic version 1.10
56
- # recursive_version_locations = false
57
-
58
- # the output encoding used when revision files
59
- # are written from script.py.mako
60
- # output_encoding = utf-8
61
-
62
- sqlalchemy.url = driver://user:pass@localhost/dbname
63
-
64
-
65
- [post_write_hooks]
66
- # post_write_hooks defines scripts or Python functions that are run
67
- # on newly generated revision scripts. See the documentation for further
68
- # detail and examples
69
-
70
- # format using "black" - use the console_scripts runner, against the "black" entrypoint
71
- # hooks = black
72
- # black.type = console_scripts
73
- # black.entrypoint = black
74
- # black.options = -l 79 REVISION_SCRIPT_FILENAME
75
-
76
- # lint with attempts to fix using "ruff" - use the exec runner, execute a binary
77
- # hooks = ruff
78
- # ruff.type = exec
79
- # ruff.executable = %(here)s/.venv/bin/ruff
80
- # ruff.options = --fix REVISION_SCRIPT_FILENAME
81
-
82
- # Logging configuration
83
- [loggers]
84
- keys = root,sqlalchemy,alembic
85
-
86
- [handlers]
87
- keys = console
88
-
89
- [formatters]
90
- keys = generic
91
-
92
- [logger_root]
93
- level = WARNING
94
- handlers = console
95
- qualname =
96
-
97
- [logger_sqlalchemy]
98
- level = WARNING
99
- handlers =
100
- qualname = sqlalchemy.engine
101
-
102
- [logger_alembic]
103
- level = INFO
104
- handlers =
105
- qualname = alembic
106
-
107
- [handler_console]
108
- class = StreamHandler
109
- args = (sys.stderr,)
110
- level = NOTSET
111
- formatter = generic
112
-
113
- [formatter_generic]
114
- format = %(levelname)-5.5s [%(name)s] %(message)s
115
- datefmt = %H:%M:%S
@@ -1,26 +0,0 @@
1
- """${message}
2
-
3
- Revision ID: ${up_revision}
4
- Revises: ${down_revision | comma,n}
5
- Create Date: ${create_date}
6
-
7
- """
8
- from typing import Sequence, Union
9
-
10
- from alembic import op
11
- import sqlalchemy as sa
12
- ${imports if imports else ""}
13
-
14
- # revision identifiers, used by Alembic.
15
- revision: str = ${repr(up_revision)}
16
- down_revision: Union[str, None] = ${repr(down_revision)}
17
- branch_labels: Union[str, Sequence[str], None] = ${repr(branch_labels)}
18
- depends_on: Union[str, Sequence[str], None] = ${repr(depends_on)}
19
-
20
-
21
- def upgrade() -> None:
22
- ${upgrades if upgrades else "pass"}
23
-
24
-
25
- def downgrade() -> None:
26
- ${downgrades if downgrades else "pass"}
@@ -1 +0,0 @@
1
- Generic single-database configuration.
@@ -1,117 +0,0 @@
1
- # A generic, single database configuration.
2
-
3
- [alembic]
4
- # path to migration scripts
5
- # Use forward slashes (/) also on windows to provide an os agnostic path
6
- script_location = ${script_location}
7
-
8
- # template used to generate migration file names; The default value is %%(rev)s_%%(slug)s
9
- # Uncomment the line below if you want the files to be prepended with date and time
10
- # see https://alembic.sqlalchemy.org/en/latest/tutorial.html#editing-the-ini-file
11
- # for all available tokens
12
- # file_template = %%(year)d_%%(month).2d_%%(day).2d_%%(hour).2d%%(minute).2d-%%(rev)s_%%(slug)s
13
-
14
- # sys.path path, will be prepended to sys.path if present.
15
- # defaults to the current working directory.
16
- prepend_sys_path = .
17
-
18
- # timezone to use when rendering the date within the migration file
19
- # as well as the filename.
20
- # If specified, requires the python>=3.9 or backports.zoneinfo library.
21
- # Any required deps can installed by adding `alembic[tz]` to the pip requirements
22
- # string value is passed to ZoneInfo()
23
- # leave blank for localtime
24
- # timezone =
25
-
26
- # max length of characters to apply to the "slug" field
27
- # truncate_slug_length = 40
28
-
29
- # set to 'true' to run the environment during
30
- # the 'revision' command, regardless of autogenerate
31
- # revision_environment = false
32
-
33
- # set to 'true' to allow .pyc and .pyo files without
34
- # a source .py file to be detected as revisions in the
35
- # versions/ directory
36
- # sourceless = false
37
-
38
- # version location specification; This defaults
39
- # to ${script_location}/versions. When using multiple version
40
- # directories, initial revisions must be specified with --version-path.
41
- # The path separator used here should be the separator specified by "version_path_separator" below.
42
- # version_locations = %(here)s/bar:%(here)s/bat:${script_location}/versions
43
-
44
- # version path separator; As mentioned above, this is the character used to split
45
- # version_locations. The default within new alembic.ini files is "os", which uses os.pathsep.
46
- # If this key is omitted entirely, it falls back to the legacy behavior of splitting on spaces and/or commas.
47
- # Valid values for version_path_separator are:
48
- #
49
- # version_path_separator = :
50
- # version_path_separator = ;
51
- # version_path_separator = space
52
- # version_path_separator = newline
53
- version_path_separator = os # Use os.pathsep. Default configuration used for new projects.
54
-
55
- # set to 'true' to search source files recursively
56
- # in each "version_locations" directory
57
- # new in Alembic version 1.10
58
- # recursive_version_locations = false
59
-
60
- # the output encoding used when revision files
61
- # are written from script.py.mako
62
- # output_encoding = utf-8
63
-
64
- sqlalchemy.url = driver://user:pass@localhost/dbname
65
-
66
-
67
- [post_write_hooks]
68
- # post_write_hooks defines scripts or Python functions that are run
69
- # on newly generated revision scripts. See the documentation for further
70
- # detail and examples
71
-
72
- # format using "black" - use the console_scripts runner, against the "black" entrypoint
73
- # hooks = black
74
- # black.type = console_scripts
75
- # black.entrypoint = black
76
- # black.options = -l 79 REVISION_SCRIPT_FILENAME
77
-
78
- # lint with attempts to fix using "ruff" - use the exec runner, execute a binary
79
- # hooks = ruff
80
- # ruff.type = exec
81
- # ruff.executable = %(here)s/.venv/bin/ruff
82
- # ruff.options = --fix REVISION_SCRIPT_FILENAME
83
-
84
- # Logging configuration
85
- [loggers]
86
- keys = root,sqlalchemy,alembic
87
-
88
- [handlers]
89
- keys = console
90
-
91
- [formatters]
92
- keys = generic
93
-
94
- [logger_root]
95
- level = WARNING
96
- handlers = console
97
- qualname =
98
-
99
- [logger_sqlalchemy]
100
- level = WARNING
101
- handlers =
102
- qualname = sqlalchemy.engine
103
-
104
- [logger_alembic]
105
- level = INFO
106
- handlers =
107
- qualname = alembic
108
-
109
- [handler_console]
110
- class = StreamHandler
111
- args = (sys.stderr,)
112
- level = NOTSET
113
- formatter = generic
114
-
115
- [formatter_generic]
116
- format = %(levelname)-5.5s [%(name)s] %(message)s
117
- datefmt = %H:%M:%S
@@ -1,26 +0,0 @@
1
- """${message}
2
-
3
- Revision ID: ${up_revision}
4
- Revises: ${down_revision | comma,n}
5
- Create Date: ${create_date}
6
-
7
- """
8
- from typing import Sequence, Union
9
-
10
- from alembic import op
11
- import sqlalchemy as sa
12
- ${imports if imports else ""}
13
-
14
- # revision identifiers, used by Alembic.
15
- revision: str = ${repr(up_revision)}
16
- down_revision: Union[str, None] = ${repr(down_revision)}
17
- branch_labels: Union[str, Sequence[str], None] = ${repr(branch_labels)}
18
- depends_on: Union[str, Sequence[str], None] = ${repr(depends_on)}
19
-
20
-
21
- def upgrade() -> None:
22
- ${upgrades if upgrades else "pass"}
23
-
24
-
25
- def downgrade() -> None:
26
- ${downgrades if downgrades else "pass"}
@@ -1,12 +0,0 @@
1
- Rudimentary multi-database configuration.
2
-
3
- Multi-DB isn't vastly different from generic. The primary difference is that it
4
- will run the migrations N times (depending on how many databases you have
5
- configured), providing one engine name and associated context for each run.
6
-
7
- That engine name will then allow the migration to restrict what runs within it to
8
- just the appropriate migrations for that engine. You can see this behavior within
9
- the mako template.
10
-
11
- In the provided configuration, you'll need to have `databases` provided in
12
- alembic's config, and an `sqlalchemy.url` provided for each engine name.
@@ -1,122 +0,0 @@
1
- # a multi-database configuration.
2
-
3
- [alembic]
4
- # path to migration scripts
5
- # Use forward slashes (/) also on windows to provide an os agnostic path
6
- script_location = ${script_location}
7
-
8
- # template used to generate migration file names; The default value is %%(rev)s_%%(slug)s
9
- # Uncomment the line below if you want the files to be prepended with date and time
10
- # see https://alembic.sqlalchemy.org/en/latest/tutorial.html#editing-the-ini-file
11
- # for all available tokens
12
- # file_template = %%(year)d_%%(month).2d_%%(day).2d_%%(hour).2d%%(minute).2d-%%(rev)s_%%(slug)s
13
-
14
- # sys.path path, will be prepended to sys.path if present.
15
- # defaults to the current working directory.
16
- prepend_sys_path = .
17
-
18
- # timezone to use when rendering the date within the migration file
19
- # as well as the filename.
20
- # If specified, requires the python>=3.9 or backports.zoneinfo library.
21
- # Any required deps can installed by adding `alembic[tz]` to the pip requirements
22
- # string value is passed to ZoneInfo()
23
- # leave blank for localtime
24
- # timezone =
25
-
26
- # max length of characters to apply to the "slug" field
27
- # truncate_slug_length = 40
28
-
29
- # set to 'true' to run the environment during
30
- # the 'revision' command, regardless of autogenerate
31
- # revision_environment = false
32
-
33
- # set to 'true' to allow .pyc and .pyo files without
34
- # a source .py file to be detected as revisions in the
35
- # versions/ directory
36
- # sourceless = false
37
-
38
- # version location specification; This defaults
39
- # to ${script_location}/versions. When using multiple version
40
- # directories, initial revisions must be specified with --version-path.
41
- # The path separator used here should be the separator specified by "version_path_separator" below.
42
- # version_locations = %(here)s/bar:%(here)s/bat:${script_location}/versions
43
-
44
- # version path separator; As mentioned above, this is the character used to split
45
- # version_locations. The default within new alembic.ini files is "os", which uses os.pathsep.
46
- # If this key is omitted entirely, it falls back to the legacy behavior of splitting on spaces and/or commas.
47
- # Valid values for version_path_separator are:
48
- #
49
- # version_path_separator = :
50
- # version_path_separator = ;
51
- # version_path_separator = space
52
- # version_path_separator = newline
53
- version_path_separator = os # Use os.pathsep. Default configuration used for new projects.
54
-
55
- # set to 'true' to search source files recursively
56
- # in each "version_locations" directory
57
- # new in Alembic version 1.10
58
- # recursive_version_locations = false
59
-
60
- # the output encoding used when revision files
61
- # are written from script.py.mako
62
- # output_encoding = utf-8
63
-
64
- databases = engine1, engine2
65
-
66
- [engine1]
67
- sqlalchemy.url = driver://user:pass@localhost/dbname
68
-
69
- [engine2]
70
- sqlalchemy.url = driver://user:pass@localhost/dbname2
71
-
72
- [post_write_hooks]
73
- # post_write_hooks defines scripts or Python functions that are run
74
- # on newly generated revision scripts. See the documentation for further
75
- # detail and examples
76
-
77
- # format using "black" - use the console_scripts runner, against the "black" entrypoint
78
- # hooks = black
79
- # black.type = console_scripts
80
- # black.entrypoint = black
81
- # black.options = -l 79 REVISION_SCRIPT_FILENAME
82
-
83
- # lint with attempts to fix using "ruff" - use the exec runner, execute a binary
84
- # hooks = ruff
85
- # ruff.type = exec
86
- # ruff.executable = %(here)s/.venv/bin/ruff
87
- # ruff.options = --fix REVISION_SCRIPT_FILENAME
88
-
89
- # Logging configuration
90
- [loggers]
91
- keys = root,sqlalchemy,alembic
92
-
93
- [handlers]
94
- keys = console
95
-
96
- [formatters]
97
- keys = generic
98
-
99
- [logger_root]
100
- level = WARNING
101
- handlers = console
102
- qualname =
103
-
104
- [logger_sqlalchemy]
105
- level = WARNING
106
- handlers =
107
- qualname = sqlalchemy.engine
108
-
109
- [logger_alembic]
110
- level = INFO
111
- handlers =
112
- qualname = alembic
113
-
114
- [handler_console]
115
- class = StreamHandler
116
- args = (sys.stderr,)
117
- level = NOTSET
118
- formatter = generic
119
-
120
- [formatter_generic]
121
- format = %(levelname)-5.5s [%(name)s] %(message)s
122
- datefmt = %H:%M:%S
@@ -1,47 +0,0 @@
1
- <%!
2
- import re
3
-
4
- %>"""${message}
5
-
6
- Revision ID: ${up_revision}
7
- Revises: ${down_revision | comma,n}
8
- Create Date: ${create_date}
9
-
10
- """
11
- from typing import Sequence, Union
12
-
13
- from alembic import op
14
- import sqlalchemy as sa
15
- ${imports if imports else ""}
16
-
17
- # revision identifiers, used by Alembic.
18
- revision: str = ${repr(up_revision)}
19
- down_revision: Union[str, None] = ${repr(down_revision)}
20
- branch_labels: Union[str, Sequence[str], None] = ${repr(branch_labels)}
21
- depends_on: Union[str, Sequence[str], None] = ${repr(depends_on)}
22
-
23
-
24
- def upgrade(engine_name: str) -> None:
25
- globals()["upgrade_%s" % engine_name]()
26
-
27
-
28
- def downgrade(engine_name: str) -> None:
29
- globals()["downgrade_%s" % engine_name]()
30
-
31
- <%
32
- db_names = config.get_main_option("databases")
33
- %>
34
-
35
- ## generate an "upgrade_<xyz>() / downgrade_<xyz>()" function
36
- ## for each database name in the ini file.
37
-
38
- % for db_name in re.split(r',\s*', db_names):
39
-
40
- def upgrade_${db_name}() -> None:
41
- ${context.get("%s_upgrades" % db_name, "pass")}
42
-
43
-
44
- def downgrade_${db_name}() -> None:
45
- ${context.get("%s_downgrades" % db_name, "pass")}
46
-
47
- % endfor
@@ -1,83 +0,0 @@
1
- alembic/__init__.py,sha256=qw_qYmTjOKiGcs--x0c6kjZo70tQTR5m8_lqF98Qr_0,63
2
- alembic/__main__.py,sha256=373m7-TBh72JqrSMYviGrxCHZo-cnweM8AGF8A22PmY,78
3
- alembic/command.py,sha256=2tkKrIoEgPfXrGgvMRGrUXH4l-7z466DOxd7Q2XOfL8,22169
4
- alembic/config.py,sha256=BZ7mwFRk2gq8GFNxxy9qvMUFx43YbDbQTC99OnjqiKY,22216
5
- alembic/context.py,sha256=hK1AJOQXJ29Bhn276GYcosxeG7pC5aZRT5E8c4bMJ4Q,195
6
- alembic/context.pyi,sha256=hUHbSnbSeEEMVkk0gDSXOq4_9edSjYzsjmmf-mL9Iao,31737
7
- alembic/environment.py,sha256=MM5lPayGT04H3aeng1H7GQ8HEAs3VGX5yy6mDLCPLT4,43
8
- alembic/migration.py,sha256=MV6Fju6rZtn2fTREKzXrCZM6aIBGII4OMZFix0X-GLs,41
9
- alembic/op.py,sha256=flHtcsVqOD-ZgZKK2pv-CJ5Cwh-KJ7puMUNXzishxLw,167
10
- alembic/op.pyi,sha256=QZ1ERetxIrpZNTyg48Btn5OJhhpMId-_MLMP36RauOw,50168
11
- alembic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
- alembic/autogenerate/__init__.py,sha256=ntmUTXhjLm4_zmqIwyVaECdpPDn6_u1yM9vYk6-553E,543
13
- alembic/autogenerate/api.py,sha256=Bh-37G0PSFeT9WSfEQ-3TZoainXGLL2nsl4okv_xYc0,22173
14
- alembic/autogenerate/compare.py,sha256=cdUBH6qsedaJsnToSOu4MfcJaI4bjUJ4VWqtBlqsSr8,44944
15
- alembic/autogenerate/render.py,sha256=YB3C90rq7XDhjTia9GAnK6yfnVVzCROziZrbArmG9SE,35481
16
- alembic/autogenerate/rewriter.py,sha256=uZWRkTYJoncoEJ5WY1QBRiozjyChqZDJPy4LtcRibjM,7846
17
- alembic/ddl/__init__.py,sha256=Df8fy4Vn_abP8B7q3x8gyFwEwnLw6hs2Ljt_bV3EZWE,152
18
- alembic/ddl/_autogen.py,sha256=Blv2RrHNyF4cE6znCQXNXG5T9aO-YmiwD4Fz-qfoaWA,9275
19
- alembic/ddl/base.py,sha256=gazpvtk_6XURcsa0libwcaIquL5HwJDP1ZWKJ6P7x0I,9788
20
- alembic/ddl/impl.py,sha256=7-oxMb7KeycaK96x-kXw4mR6NSE1tmN0UEZIZrPcuhY,30195
21
- alembic/ddl/mssql.py,sha256=ydvgBSaftKYjaBaMyqius66Ta4CICQSj79Og3Ed2atY,14219
22
- alembic/ddl/mysql.py,sha256=kXOGYmpnL_9WL3ijXNsG4aAwy3m1HWJOoLZSePzmJF0,17316
23
- alembic/ddl/oracle.py,sha256=669YlkcZihlXFbnXhH2krdrvDry8q5pcUGfoqkg_R6Y,6243
24
- alembic/ddl/postgresql.py,sha256=GNCnx-N8UsCIstfW49J8ivYcKgRB8KFNPRgNtORC_AM,29883
25
- alembic/ddl/sqlite.py,sha256=wLXhb8bJWRspKQTb-iVfepR4LXYgOuEbUWKX5qwDhIQ,7570
26
- alembic/operations/__init__.py,sha256=e0KQSZAgLpTWvyvreB7DWg7RJV_MWSOPVDgCqsd2FzY,318
27
- alembic/operations/base.py,sha256=JRaOtPqyqfaPjzGHxuP9VMcO1KsJNmbbLOvwG82qxGA,74474
28
- alembic/operations/batch.py,sha256=YqtD4hJ3_RkFxvI7zbmBwxcLEyLHYyWQpsz4l5L85yI,26943
29
- alembic/operations/ops.py,sha256=guIpLQzlqgkdP2LGDW8vWg_DXeAouEldiVZDgRas7YI,94953
30
- alembic/operations/schemaobj.py,sha256=Wp-bBe4a8lXPTvIHJttBY0ejtpVR5Jvtb2kI-U2PztQ,9468
31
- alembic/operations/toimpl.py,sha256=Fx-UKcq6S8pVtsEwPFjTKtEcAVKjfptn-BfpE1k3_ck,7517
32
- alembic/runtime/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
- alembic/runtime/environment.py,sha256=SkYB_am1h3FSG8IsExAQxGP_7WwzOVigqjlO747Aokc,41497
34
- alembic/runtime/migration.py,sha256=9GZ_bYZ6yMF7DUD1hgZdmB0YqvcdcNBBfxFaXKHeQoM,49857
35
- alembic/script/__init__.py,sha256=lSj06O391Iy5avWAiq8SPs6N8RBgxkSPjP8wpXcNDGg,100
36
- alembic/script/base.py,sha256=XLNpdsLnBBSz4ZKMFUArFUdtL1HcjtuUDHNbA-5VlZA,37809
37
- alembic/script/revision.py,sha256=NTu-eu5Y78u4NoVXpT0alpD2oL40SGATA2sEMEf1el4,62306
38
- alembic/script/write_hooks.py,sha256=NGB6NGgfdf7HK6XNNpSKqUCfzxazj-NRUePgFx7MJSM,5036
39
- alembic/templates/async/README,sha256=ISVtAOvqvKk_5ThM5ioJE-lMkvf9IbknFUFVU_vPma4,58
40
- alembic/templates/async/alembic.ini.mako,sha256=lw_6ie1tMbYGpbvE7MnzJvx101RbSTh9uu4t9cvDpug,3638
41
- alembic/templates/async/env.py,sha256=zbOCf3Y7w2lg92hxSwmG1MM_7y56i_oRH4AKp0pQBYo,2389
42
- alembic/templates/async/script.py.mako,sha256=MEqL-2qATlST9TAOeYgscMn1uy6HUS9NFvDgl93dMj8,635
43
- alembic/templates/generic/README,sha256=MVlc9TYmr57RbhXET6QxgyCcwWP7w-vLkEsirENqiIQ,38
44
- alembic/templates/generic/alembic.ini.mako,sha256=YcwTOEoiZr663Gkt6twCjmaqZao0n6xjRl0B5prK79s,3746
45
- alembic/templates/generic/env.py,sha256=TLRWOVW3Xpt_Tpf8JFzlnoPn_qoUu8UV77Y4o9XD6yI,2103
46
- alembic/templates/generic/script.py.mako,sha256=MEqL-2qATlST9TAOeYgscMn1uy6HUS9NFvDgl93dMj8,635
47
- alembic/templates/multidb/README,sha256=dWLDhnBgphA4Nzb7sNlMfCS3_06YqVbHhz-9O5JNqyI,606
48
- alembic/templates/multidb/alembic.ini.mako,sha256=AW1OGb-QezxBY5mynSWW7b1lGKnh9sVPImfGgfXf2EM,3840
49
- alembic/templates/multidb/env.py,sha256=6zNjnW8mXGUk7erTsAvrfhvqoczJ-gagjVq1Ypg2YIQ,4230
50
- alembic/templates/multidb/script.py.mako,sha256=N06nMtNSwHkgl0EBXDyMt8njp9tlOesR583gfq21nbY,1090
51
- alembic/testing/__init__.py,sha256=kOxOh5nwmui9d-_CCq9WA4Udwy7ITjm453w74CTLZDo,1159
52
- alembic/testing/assertions.py,sha256=ScUb1sVopIl70BirfHUJDvwswC70Q93CiIWwkiZbhHg,5207
53
- alembic/testing/env.py,sha256=giHWVLhHkfNWrPEfrAqhpMOLL6FgWoBCVAzBVrVbSSA,10766
54
- alembic/testing/fixtures.py,sha256=nBntOynOmVCFc7IYiN3DIQ3TBNTfiGCvL_1-FyCry8o,9462
55
- alembic/testing/requirements.py,sha256=dKeAO1l5TwBqXarJN-IPORlCqCJv-41Dj6oXoEikxHQ,5133
56
- alembic/testing/schemacompare.py,sha256=N5UqSNCOJetIKC4vKhpYzQEpj08XkdgIoqBmEPQ3tlc,4838
57
- alembic/testing/util.py,sha256=CQrcQDA8fs_7ME85z5ydb-Bt70soIIID-qNY1vbR2dg,3350
58
- alembic/testing/warnings.py,sha256=RxA7x_8GseANgw07Us8JN_1iGbANxaw6_VitX2ZGQH4,1078
59
- alembic/testing/plugin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
60
- alembic/testing/plugin/bootstrap.py,sha256=9C6wtjGrIVztZ928w27hsQE0KcjDLIUtUN3dvZKsMVk,50
61
- alembic/testing/suite/__init__.py,sha256=MvE7-hwbaVN1q3NM-ztGxORU9dnIelUCINKqNxewn7Y,288
62
- alembic/testing/suite/_autogen_fixtures.py,sha256=cDq1pmzHe15S6dZPGNC6sqFaCQ3hLT_oPV2IDigUGQ0,9880
63
- alembic/testing/suite/test_autogen_comments.py,sha256=aEGqKUDw4kHjnDk298aoGcQvXJWmZXcIX_2FxH4cJK8,6283
64
- alembic/testing/suite/test_autogen_computed.py,sha256=CXAeF-5Wr2cmW8PB7ztHG_4ZQsn1gSWrHWfxi72grNU,6147
65
- alembic/testing/suite/test_autogen_diffs.py,sha256=T4SR1n_kmcOKYhR4W1-dA0e5sddJ69DSVL2HW96kAkE,8394
66
- alembic/testing/suite/test_autogen_fks.py,sha256=AqFmb26Buex167HYa9dZWOk8x-JlB1OK3bwcvvjDFaU,32927
67
- alembic/testing/suite/test_autogen_identity.py,sha256=kcuqngG7qXAKPJDX4U8sRzPKHEJECHuZ0DtuaS6tVkk,5824
68
- alembic/testing/suite/test_environment.py,sha256=OwD-kpESdLoc4byBrGrXbZHvqtPbzhFCG4W9hJOJXPQ,11877
69
- alembic/testing/suite/test_op.py,sha256=2XQCdm_NmnPxHGuGj7hmxMzIhKxXNotUsKdACXzE1mM,1343
70
- alembic/util/__init__.py,sha256=KSZ7UT2YzH6CietgUtljVoE3QnGjoFKOi7RL5sgUxrk,1688
71
- alembic/util/compat.py,sha256=RjHdQa1NomU3Zlvgfvza0OMiSRQSLRL3xVl3OdUy2UE,2594
72
- alembic/util/editor.py,sha256=JIz6_BdgV8_oKtnheR6DZoB7qnrHrlRgWjx09AsTsUw,2546
73
- alembic/util/exc.py,sha256=KQTru4zcgAmN4IxLMwLFS56XToUewaXB7oOLcPNjPwg,98
74
- alembic/util/langhelpers.py,sha256=LpOcovnhMnP45kTt8zNJ4BHpyQrlF40OL6yDXjqKtsE,10026
75
- alembic/util/messaging.py,sha256=BxAHiJsYHBPb2m8zv4yaueSRAlVuYXWkRCeN02JXhqw,3250
76
- alembic/util/pyfiles.py,sha256=zltVdcwEJJCPS2gHsQvkHkQakuF6wXiZ6zfwHbGNT0g,3489
77
- alembic/util/sqla_compat.py,sha256=XMfZaLdbVbJoniNUyI3RUUXu4gCWljjVBbJ7db6vCgc,19526
78
- alembic-1.14.0.dist-info/LICENSE,sha256=zhnnuit3ylhLgqZ5KFbhOOswsxHIlrB2wJpAXuRfvuk,1059
79
- alembic-1.14.0.dist-info/METADATA,sha256=5hNrxl9umF2WKbNL-MxyMUEZem8-OxRa49Qz9w7jqzo,7390
80
- alembic-1.14.0.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
81
- alembic-1.14.0.dist-info/entry_points.txt,sha256=aykM30soxwGN0pB7etLc1q0cHJbL9dy46RnK9VX4LLw,48
82
- alembic-1.14.0.dist-info/top_level.txt,sha256=FwKWd5VsPFC8iQjpu1u9Cn-JnK3-V1RhUCmWqz1cl-s,8
83
- alembic-1.14.0.dist-info/RECORD,,