Skip to content

Files

Latest commit

f9c55bd · Feb 14, 2021

History

History

migrations

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Feb 14, 2021
Jan 21, 2021

Migrations

Init config file and location

poetry run aerich init -t good_place.db.utils.TORTOISE_CONFIG

Init DB

poetry run aerich init-db

Generate the migrations

poetry run aerich migrate --name <migation_name>

Run the migrations

poetry run aerich upgrade

Revert migrations

poetry run aerich downgrade

To downgrade multiple versions :

poetry run aerich downgrade -v -2 

base can be replaced by the revision id where you want to go back.