liquibase.harness.change.changelogs.mariadb.setPrimaryKeyColumnRemarks.xml Maven / Gradle / Ivy
<?xml version="1.0" encoding="UTF-8"?> <databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.3.xsd"> <changeSet id="1::createTable" author="Liquibase User"> <createTable tableName="test_table"> <column name="pk_column" autoIncrement="true" type="BIGINT" remarks="Internal identifier of test_table"> <constraints primaryKey="true" nullable="false" primaryKeyName="test_pk"/> </column> </createTable> </changeSet> </databaseChangeLog>
© 2015 - 2024 Weber Informatics LLC | Privacy Policy