
db.changelog.table_customer.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wicket-spring-boot-starter-example Show documentation
Show all versions of wicket-spring-boot-starter-example Show documentation
An example project which uses the wicket-spring-boot-starter autoconfiguration project
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.4.xsd"> <changeSet author="mgiffing" id="1"> <createTable tableName="customer"> <column name="id" type="bigint" autoIncrement="true"> <constraints primaryKey="true" nullable="false" /> </column> <column name="username" type="VARCHAR(255)"> <constraints nullable="false" /> </column> <column name="password" type="VARCHAR(255)"> <constraints nullable="false" /> </column> <column name="firstname" type="VARCHAR(255)" /> <column name="lastname" type="VARCHAR(255)" /> <column name="active" type="BOOLEAN"> <constraints nullable="false" /> </column> </createTable> </changeSet> </databaseChangeLog>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy