All Downloads are FREE. Search and download functionalities are using the official Maven repository.

db.changelog.table_customer.xml Maven / Gradle / Ivy

There is a newer version: 2.1.9
Show newest version
<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