Advertisement
Guest User

Untitled

a guest
Jun 19th, 2013
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.48 KB | None | 0 0
  1. <changeSet author="ben (generated)" id="1227303685425-53">
  2.         <createTable tableName="person_attribute">
  3.             <column autoIncrement="true" name="person_attribute_id" type="int">
  4.                 <constraints nullable="false" primaryKey="true"/>
  5.             </column>
  6.             <column defaultValueNumeric="0" name="person_id" type="int">
  7.                 <constraints nullable="false"/>
  8.             </column>
  9.             <column defaultValue="" name="value" type="varchar(50)">
  10.                 <constraints nullable="false"/>
  11.             </column>
  12.             <column defaultValueNumeric="0" name="person_attribute_type_id" type="int">
  13.                 <constraints nullable="false"/>
  14.             </column>
  15.             <column defaultValueNumeric="0" name="creator" type="int">
  16.                 <constraints nullable="true"/>
  17.             </column>
  18.             <column name="date_created" type="DATETIME">
  19.                 <constraints nullable="false"/>
  20.             </column>
  21.             <column name="changed_by" type="int"/>
  22.             <column name="date_changed" type="DATETIME"/>
  23.             <column defaultValueBoolean="false" name="voided" type="BOOLEAN">
  24.                 <constraints nullable="false"/>
  25.             </column>
  26.             <column name="voided_by" type="int"/>
  27.             <column name="date_voided" type="DATETIME"/>
  28.             <column name="void_reason" type="varchar(255)"/>
  29.             <column name="uuid" type="char(38)" />
  30.         </createTable>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement