Skip to content

Commit

Permalink
sql changes
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewbilham committed Jun 18, 2024
1 parent 0a392db commit 6629370
Showing 1 changed file with 29 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
"""Add column last_name to User model
Revision ID: a34ca7362597
Revises:
Create Date: 2024-06-18 20:57:33.386240
"""
from alembic import op
import sqlalchemy as sa
import sqlmodel.sql.sqltypes


# revision identifiers, used by Alembic.
revision = 'a34ca7362597'
down_revision = None
branch_labels = None
depends_on = None


def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
pass
# ### end Alembic commands ###


def downgrade():
# ### commands auto generated by Alembic - please adjust! ###
pass
# ### end Alembic commands ###

0 comments on commit 6629370

Please sign in to comment.