0

我有这部分 XML Liquibase 脚本,用于在表中创建一些列:

        <column name="send_time" type="timestamp">
            <constraints nullable="false"/>
        </column>
        <column name="delivery_time" type="timestamp">
            <constraints nullable="false"/>
        </column>
        <column name="read_time" type="timestamp">
            <constraints nullable="false"/>
        </column>
        <column name="payload" type="json">
            <constraints nullable="true"/>
        </column>
        <column name="created_date" type="timestamp">
            <constraints nullable="false"/>
        </column>
        <column name="created_by" type="varchar(50)">
            <constraints nullable="false"/>
        </column>
        <column name="last_modified_date" type="timestamp"/>
        <column name="last_modified_by" type="varchar(50)"/>
        <column name="deleted_date" type="timestamp"/>
        <column name="deleted_by" type="varchar(50)"/>

谁能解释为什么结果像附图中的那样? 在此处输入图像描述

换句话说,这设置为字段“send_time”,即默认/表达式。

为什么这个?

4

0 回答 0