INTERNAL:
Append the database field definition string to the table creation statement.
try {
writer.write("UNIQUE (");
for (Enumeration sourceEnum = getSourceFields().elements();
sourceEnum.hasMoreElements();) {
writer.write((String)sourceEnum.nextElement());
if (sourceEnum.hasMoreElements()) {
writer.write(", ");
}
}
writer.write(")");
} catch (IOException ioException) {
throw ValidationException.fileError(ioException);
}