1 <changeSet author="yours_truly" id="EXAMPLE-02-01-dropPK">
2 <dropPrimaryKey tableName= "our_awesome_table" constraintName="CPK_OUR_AWESOME_TABLE"/>
3 </changeSet>
4
5 <changeSet author="yours_truly" id="EXAMPLE-02-01-addNNcol">
6 <addColumn tableName="our_awesome_table">
7 <column name="CREATED_AT" type="datetime" valueDate="current_datetime" defaultValueDate="current_datetime">
8 <constraints nullable="false"/>
9 </column>
10 </addColumn>
11</changeSet>
12
13<changeSet author="yours_truly" id="EXAMPLE-02-02">
14 <addPrimaryKey tableName="our_awesome_table" columnNames="source,external_id,CREATED_AT" constraintName="CPK_OUR_AWESOME_TABLE"/>
15</changeSet>
16