Title here
Summary here
jetshift migrate -e database-enginejetshift migrate # default engine is mysql
jetshift migrate -e clickhousejetshift migrate table-name -e database-enginejetshift migrate users # default engine is mysql
jetshift migrate users -e clickhouseThe -d option will drop all tables from the database:
Drop all tables:
jetshift migrate -d
jetshift migrate -d -e clickhouseThe --fresh or -f option will drop the table from the database and then execute the migrate command:
Drop and migrate all tables:
jetshift migrate --fresh # default engine is mysql
jetshift migrate -e clickhouse -fDrop and migrate specific table:
jetshift migrate users --fresh # default engine is mysql
jetshift migrate users -e clickhouse -f