Skip to content

Commit 1a65ef9

Browse files
Bump alembic from 1.11.3 to 1.14.0 in /{{cookiecutter.project_slug}}/backend (#852)
* Bump alembic in /{{cookiecutter.project_slug}}/backend Bumps [alembic](https://github.com/sqlalchemy/alembic) from 1.11.3 to 1.14.0. - [Release notes](https://github.com/sqlalchemy/alembic/releases) - [Changelog](https://github.com/sqlalchemy/alembic/blob/main/CHANGES) - [Commits](https://github.com/sqlalchemy/alembic/commits) --- updated-dependencies: - dependency-name: alembic dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * fix broken migration --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Gaganpreet Arora <me@gaganpreet.in>
1 parent e0d4cc6 commit 1a65ef9

File tree

3 files changed

+100
-28
lines changed

3 files changed

+100
-28
lines changed

{{cookiecutter.project_slug}}/backend/alembic/versions/7e09fa75df7a_add_initial_migration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def upgrade():
2222
op.create_table('users',
2323
sa.Column('id', fastapi_users_db_sqlalchemy.GUID(), nullable=False),
2424
sa.Column('email', sa.String(length=320), nullable=False),
25-
sa.Column('hashed_password', sa.String(length=72), nullable=False),
25+
sa.Column('hashed_password', sa.String(length=1024), nullable=False),
2626
sa.Column('is_active', sa.Boolean(), nullable=False),
2727
sa.Column('is_superuser', sa.Boolean(), nullable=False),
2828
sa.Column('is_verified', sa.Boolean(), nullable=False),

0 commit comments

Comments
 (0)