ALF-11670: Add autoincrement boolean property to columns

Columns now have a property to describe whether it has been defined as an auto-increment column, e.g. AUTO_INCREMENT for MySQL. The property is persisted in XML reference files, loaded from XML reference files and compared between schemas.

The MySQL reference file has been updated to include autoincrement values.




git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@32711 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Matt Ward
2011-12-12 18:28:10 +00:00
parent b7cefd27aa
commit cc28ee3413
14 changed files with 290 additions and 1 deletions

View File

@@ -39,6 +39,7 @@ public abstract class XML
public static final String EL_SEQUENCE = Sequence.class.getSimpleName().toLowerCase();
public static final String EL_TYPE = "type";
public static final String EL_NULLABLE = "nullable";
public static final String EL_AUTOINCREMENT = "autoincrement";
public static final String EL_COLUMN_NAME = "columnname";
public static final String EL_COLUMN_NAMES = "columnnames";
public static final String EL_LOCAL_COLUMN = "localcolumn";