@Override
public void upgrade(EOEditingContext editingContext, ERXMigrationDatabase database) throws Throwable {
ERXMigrationTable sPGroupTable = database.newTableNamed("SPGroup");
sPGroupTable.newStringColumn("description", 1000, true);
sPGroupTable.newStringColumn("groupPassword", 100, true);
sPGroupTable.newIntegerColumn("id", false);
sPGroupTable.newStringColumn("name", 255, false);
sPGroupTable.newIntegerColumn("ownerID", false);
sPGroupTable.create();
sPGroupTable.setPrimaryKey("id");