반응형
flask -- 기존 db table 변경하기
환경 ; python 3.6
참고 ; https://github.com/miguelgrinberg/Flask-Migrate
https://flask-migrate.readthedocs.io/en/latest/
문제점 ; flask-sqlalchemy 사용하여 처음에 db table 생성하면, 추후에 column 을 추가하는 작업을 할수 없다.
해결책 ; flask-migrate 사용하면 됨.
Then each time the database models change repeat the migrate
and upgrade
commands.
반응형
'python' 카테고리의 다른 글
python -- type hint (1) | 2018.10.11 |
---|---|
hashlib -- TypeError: Unicode-objects must be encoded before hashing 해결 (0) | 2018.08.06 |
python -- 가변인자 이용하여 callback 사용하기 (0) | 2017.08.12 |
python -- 윈도우즈에서 소리내기 ; 도레미 송 (0) | 2017.08.10 |
python -- win32com eventhandler 이름 규칙 (0) | 2017.05.31 |