Add CLI tool for migrations. We can use `typer` or `click` to create migrations like this: ```sh riverorm migrate riverorm create-table User ``` We can consider our own implementation as well. But using already existing lightweight tool may save us some time.
Add CLI tool for migrations.
We can use
typerorclickto create migrations like this:We can consider our own implementation as well. But using already existing lightweight tool may save us some time.