[FastAPI] Alembic migrations/env.py 수정하여 특정 테이블 무시
Dev/Python
·
2025. 3. 15.
다른 프로젝트도 같이 진행중인데 공부중이라 기존에 타 프로젝트에서 사용하는 테이블이 존재함. 마이그레이션 잘못했다가 테이블 여러번 날려먹을뻔하고 에러가 나서 다행이라고 생각함drop...로그 보고 기절할뻔1. migrations/env.py 수정하여 특정 테이블 무시migrations/env.pyimport osfrom alembic import contextfrom sqlalchemy import create_engine, poolfrom logging.config import fileConfigfrom models import Base # models.py에서 모든 모델을 가져옴# Alembic 설정 로드config = context.configfileConfig(config.config_file_..