Skip to content

Commit

Permalink
migration init
Browse files Browse the repository at this point in the history
  • Loading branch information
gromdimon committed Dec 20, 2023
1 parent 27a5f79 commit 2fd8c9e
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
30 changes: 30 additions & 0 deletions backend/alembic/versions/b0881f58b8cf_alter_acmgseqvar.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
"""Modify the AcmgSeqVar table by dropping PP5&BP6 and making criteria uppercase.
Revision ID: b0881f58b8cf
Revises: d10fec1c88fc
Create Date: 2023-12-20 11:32:03.060426+01:00
"""
from alembic import op
import sqlalchemy as sa


import fastapi_users_db_sqlalchemy.generics # noqa

# revision identifiers, used by Alembic.
revision = 'b0881f58b8cf'
down_revision = 'd10fec1c88fc'
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 ###
3 changes: 2 additions & 1 deletion frontend/vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ export default mergeConfig(
root: fileURLToPath(new URL('./', import.meta.url)),
transformMode: {
web: [/\.[jt]sx$/]
}
},
testTimeout: 10000
}
}) as typeof viteConfig
)

0 comments on commit 2fd8c9e

Please sign in to comment.