0
我已經寫了一個遷移來使用npm db-migrate創建一個表,並使用mysql作爲數據庫。使用未知數據類型FLOAT
Screenshot of the warning的遷移是否正常運行和列的表
column_A: {type: 'float', notNull: false},
column_B: {type: 'float', notNull: false},
column_C: {type: 'float', notNull: false},
column_D: {type: 'float', notNull: false},
在被填充,但控制檯顯示以下警告:
[WARN] Using unknown data type FLOAT
能有人幫。謝謝!
你試圖在這些FLOAT列中插入什麼值? – JazZ
感謝您的幫助,它的工作。 – user3411139