Artyom Slobodkin

Results 5 comments of Artyom Slobodkin
trafficstars

I think production-ready way to create tables is [alembic](https://alembic.sqlalchemy.org/en/latest/) package. Its official way to create database migration by sqlalchemy. You can find example of how I did it in my...

For tests its pretty good to use `metadata.create_all`, but in production code better way is yo use migrations.

Well, no actually. What I want is that when package is builded it will require exact versions of all dependencies from lock file. These versions can be also extracted (vied)...

I will try to find some time to check it