Skip to content

Commit 570da9e

Browse files
cleaning
1 parent f50b13a commit 570da9e

23 files changed

Lines changed: 46 additions & 1652 deletions

Endpoint Methods Subdomain Rule Descript.txt

Lines changed: 0 additions & 46 deletions
This file was deleted.
4.42 KB
Binary file not shown.
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
"""empty message
2+
3+
Revision ID: c739e6680052
4+
Revises: 32f0778215f8
5+
Create Date: 2025-02-24 17:46:44.826106
6+
7+
"""
8+
from alembic import op
9+
import sqlalchemy as sa
10+
from sqlalchemy.dialects import mysql
11+
12+
# revision identifiers, used by Alembic.
13+
revision = 'c739e6680052'
14+
down_revision = '32f0778215f8'
15+
branch_labels = None
16+
depends_on = None
17+
18+
19+
def upgrade():
20+
# ### commands auto generated by Alembic - please adjust! ###
21+
with op.batch_alter_table('user', schema=None) as batch_op:
22+
batch_op.alter_column('lastname',
23+
existing_type=mysql.VARCHAR(length=20),
24+
type_=sa.String(length=40),
25+
existing_nullable=False)
26+
batch_op.alter_column('username',
27+
existing_type=mysql.VARCHAR(length=20),
28+
type_=sa.String(length=40),
29+
existing_nullable=False)
30+
31+
# ### end Alembic commands ###
32+
33+
34+
def downgrade():
35+
# ### commands auto generated by Alembic - please adjust! ###
36+
with op.batch_alter_table('user', schema=None) as batch_op:
37+
batch_op.alter_column('username',
38+
existing_type=sa.String(length=40),
39+
type_=mysql.VARCHAR(length=20),
40+
existing_nullable=False)
41+
batch_op.alter_column('lastname',
42+
existing_type=sa.String(length=40),
43+
type_=mysql.VARCHAR(length=20),
44+
existing_nullable=False)
45+
46+
# ### end Alembic commands ###

tests/buffer.pdf

-1.38 KB
Binary file not shown.

tests/chart.html

Lines changed: 0 additions & 116 deletions
This file was deleted.

tests/chart.pdf

-8.39 KB
Binary file not shown.

tests/coordonee.html

Lines changed: 0 additions & 85 deletions
This file was deleted.

tests/coordonee.py

Lines changed: 0 additions & 28 deletions
This file was deleted.

tests/html_test2.py

Lines changed: 0 additions & 5 deletions
This file was deleted.

tests/html_to_pdf.py

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)