在LiquiBase的xml中怎么给table写注释,或者字段写注释?
谢谢大神
<createTable tableName="Role_" remarks="角色表"> <column name="uuid_" type="VARCHAR(40)" remarks="唯一标识"> <constraints nullable="false"/> </column> <column name="roleId" type="number(30,0)" remarks="角色ID"> <constraints nullable="false"/> </column> <column name="companyId" type="number(30,0)" remarks="公司ID"> <constraints nullable="false"/> </column> <column name="userId" type="number(30,0)" remarks="创建用户"> <constraints nullable="false"/>
</column>
</createTable>
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(2)
谢谢大神
<createTable tableName="Role_" remarks="角色表">
<column name="uuid_" type="VARCHAR(40)" remarks="唯一标识">
<constraints nullable="false"/>
</column>
<column name="roleId" type="number(30,0)" remarks="角色ID">
<constraints nullable="false"/>
</column>
<column name="companyId" type="number(30,0)" remarks="公司ID">
<constraints nullable="false"/>
</column>
<column name="userId" type="number(30,0)" remarks="创建用户">
<constraints nullable="false"/>
</column>
</createTable>