Skip to content

Commit c11a30a

Browse files
committed
Merge remote-tracking branch 'origin' into 290-user_admin
2 parents 5c18047 + 1dd57c3 commit c11a30a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/server/alembic/versions/f3d30db17bed_change_pdp_users_password_to_bytea.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
def upgrade():
2020
op.drop_column("pdp_users", "password")
21-
op.add_column("pdp_users", sa.Column("password", sa.Binary, nullable=False))
21+
op.add_column("pdp_users", sa.Column("password", sa.LargeBinary, nullable=False))
2222

2323

2424
def downgrade():

src/server/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Flask==1.1.2
22
pandas==1.0.0
33
numpy==1.18.1
4-
sqlalchemy < 1.4.0 # Import error with 1.4.0 on _ColumnEntity
4+
sqlalchemy==1.4.15
55
psycopg2-binary==2.8.4
66
xlrd==1.2.0 # currently used for xlsx, but we should consider adjusting code to openpyxl for xlsx
77
openpyxl

0 commit comments

Comments
 (0)