@Override
public void upgrade(EOEditingContext editingContext, ERXMigrationDatabase database) throws Throwable {
ERXMigrationTable companyTable = database.existingTableNamed("Company");
companyTable.newIntegerColumn("logoID", true);
companyTable.addIndex("name");
ERXMigrationTable employeeTable = database.existingTableNamed("Employee");
employeeTable.addIndex("lastName");
companyTable.addForeignKey("logoID", "ERAttachment", "id");