'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)


이걸 하지 말란거임.. ㅜㅜ (파이썬)

Posted by TY
,