1. django admin 에서 model 추가하는 것
from django.contrib import admin from .models import Question admin.site.register(Question)
2. mysql 기본 명령어 정리
http://kwonnam.pe.kr/wiki/database/mysql/basic
3. centos7 mysql 설치
http://pseg.or.kr/pseg/infoinstall/8335
4. django error
django.db.utils.OperationalError: table table has no column named attribute1
DB를 수정 후 migration 했는데 없다고 나옴;;
migrations 폴더에 생기는 파일들 삭제 후, 해도 안되서
테이블 모두 삭제해서 다시 migrations 해주었더니 에러는 사라졌다.
django 에서 추가로 생성된 테이블들 모두 지워야한다.
테이블에 데이터가 없어서 가능했던 일,,
'IT' 카테고리의 다른 글
he size of BLOB/TEXT data inserted in one transaction is greater than 10% of redo log size. Increase the redo log size using innodb_log_file_size (0) | 2018.04.20 |
---|---|
_mysql_exceptions.OperationalError: (2006, 'MySQL server has gone away') (0) | 2018.04.17 |
json (0) | 2018.03.21 |
awk 명령어 (0) | 2018.03.08 |
python에서의 thread 동시성 문제 (feat. GIL, Global Interpreter Lock ) (0) | 2018.02.08 |