File tree Expand file tree Collapse file tree 2 files changed +29
-1
lines changed
esgpull/migrations/versions Expand file tree Collapse file tree 2 files changed +29
-1
lines changed Original file line number Diff line number Diff line change
1
+ """update tables
2
+
3
+ Revision ID: 0.7.1
4
+ Revises: 0.7.0
5
+ Create Date: 2024-09-12 17:00:21.157499
6
+
7
+ """
8
+ from alembic import op
9
+ import sqlalchemy as sa
10
+
11
+
12
+ # revision identifiers, used by Alembic.
13
+ revision = '0.7.1'
14
+ down_revision = '0.7.0'
15
+ branch_labels = None
16
+ depends_on = None
17
+
18
+
19
+ def upgrade () -> None :
20
+ # ### commands auto generated by Alembic - please adjust! ###
21
+ pass
22
+ # ### end Alembic commands ###
23
+
24
+
25
+ def downgrade () -> None :
26
+ # ### commands auto generated by Alembic - please adjust! ###
27
+ pass
28
+ # ### end Alembic commands ###
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
5
5
[project ]
6
6
name = " esgpull"
7
- version = " 0.7.0 "
7
+ version = " 0.7.1 "
8
8
classifiers = [
9
9
" License :: OSI Approved :: BSD License" ,
10
10
" Programming Language :: Python :: 3" ,
You can’t perform that action at this time.
0 commit comments