Flask-migrate가있는 플라스크 애플리케이션이 있습니다.Flask Sql-alchemy가 alembic에서 작성한 테이블을 삭제하지 않음
List of relations
Schema | Name | Type | Owner
-------+-----------------+-------+----------
public | alembic_version | table | postgres
public | operations | table | postgres
public | rule_values | table | postgres
public | rules | table | postgres
public | shares | table | postgres
을하지만 모든 테이블을 삭제할 때 : db upgrade
를 실행하면 다음과 같은 테이블을 생성
db = SQLAlchemy(app)
db.drop_all()
나는이있어 : 모든 테이블을 삭제하는 솔루션
List of relations
Schema | Name | Type | Owner
-------+-----------------+-------+----------
public | alembic_version | table | postgres
거기를 (심지어 alembic_version
) ?
증류기는 현재 배포 된 데이터베이스의 버전을 알 필요가있다 : – polku
@polku 빈 데이터베이스에서 시작하겠습니다. –