0
我正在使用JHipster 4.1,並且在添加新模型時需要幫助。 我想創建我的模型類擴展AbstractAuditingEntity類,但是當我做mvnw liquibase:diff用於更新日誌文件生成時,新文件具有時間戳的TINYBLOB數據類型。我不確定它爲什麼會這樣產生。Jhipster:域類中的ZonedDateTime沒有轉換爲時間戳,而是在liquibase更新日誌文件中轉換爲TINYBLOB
> <column name="created_by" type="VARCHAR(50)">
> <constraints nullable="false"/>
> </column>
> <column name="created_date" type="TINYBLOB">
> <constraints nullable="false"/>
> </column>
> <column name="last_modified_by" type="VARCHAR(50)"/>
> <column name="last_modified_date" type="TINYBLOB"/>
任何人都可以請說明爲什麼它是產生錯誤的數據類型。