mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
13 lines
584 B
XML
13 lines
584 B
XML
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
<migration xmlns="http://ebean-orm.github.io/xml/ns/dbmigration">
|
|
<changeSet>
|
|
<createTable name="e_basic">
|
|
<column name="id" type="integer" primaryKey="true" identity="true"/>
|
|
<column name="status" type="varchar(1)" checkConstraint="check (status in ('N','A','I'))"/>
|
|
<column name="name" type="varchar(255)"/>
|
|
<column name="description" type="varchar(255)"/>
|
|
<column name="some_date" type="timestamp"/>
|
|
</createTable>
|
|
</changeSet>
|
|
</migration>
|