Skip to content

Commit

Permalink
fixed alembic typo
Browse files Browse the repository at this point in the history
  • Loading branch information
justintroy committed Nov 27, 2023
1 parent 2c8dcd1 commit 356f034
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion alembic/versions/ab75350b73a1_create_user_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

def upgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
op.create_table('user',
op.create_table('users',
sa.Column('id', sa.String(length=36), nullable=False),
sa.Column('updated_at', sa.DateTime(), nullable=True),
sa.Column('created_at', sa.DateTime(), nullable=True),
Expand Down

0 comments on commit 356f034

Please sign in to comment.