attachmentTable.newBlobColumn("smallData", true);
attachmentTable.newStringColumn("thumbnail", 10, true);
attachmentTable.newStringColumn("webPath", 1000, false);
attachmentTable.newIntegerColumn("width", true);
attachmentTable.newIntegerColumn("attachmentDataID", true);
attachmentTable.newStringColumn("filesystemPath", 255, true);
attachmentTable.newStringColumn("s3Path", 1000, true);
attachmentTable.create();
attachmentTable.setPrimaryKey("id");
attachmentTable.addUniqueIndex("ERAttachmentWebPath", "webPath", 1000);