'Incorrect table definition; there can be only one TIMESTAMP column with CURRENT_TIMESTAMP in DEFAULT or ON UPDATE clause'
IT/troubleshooting 2012. 11. 22. 08:46'Incorrect table definition; there can be only one TIMESTAMP column with CURRENT_TIMESTAMP in DEFAULT or ON UPDATE clause'
나를 4시간동안 뻐큐먹인 에러문. sync db를 못해서, 테스트를 못함. ㅜㅜ
에러 난 이유:
timestamp 가 current_timestamp가 default인 칼럼을 두개 만들지 마라.... 말랜다... 그냥 정신 멍하고 귀찮아서 구글에서 검색만 하다가, 제정신을 차려보니 나를 공격함.
한 마디로..
class Foo(models.Model):
bar = UnixTimestampField(auto_created=True)
bar2 = UnixTimestampField(auto_created=True)
이걸 하지 말란거임.. ㅜㅜ (파이썬)
'IT > troubleshooting' 카테고리의 다른 글
appears to be part of a Subversion 1.7 or greater working copy [ubuntu에서 svn checkout이 안 될 때) (0) | 2013.02.19 |
---|---|
TinyEditor 에서 post 함수를 호출해도 Null (or None)이 리턴이 될 때 (0) | 2012.11.26 |
[Mac OSX 10.8] MAC에서 MySQL UTF-8설정 (0) | 2012.11.22 |
서버가 죽었었습니다. (MyISAM 테이블 깨졌을 때 대처법) (0) | 2012.07.23 |
MySQL `와 '의 차이 (0) | 2012.03.16 |