schema.addTable(aspect);
RemoveTableAspectStep step = new RemoveTableAspectStep();
step.setAspectName(aspect.getName());
step.addPointcutPattern(table.getName(), true);
schema = upgrade(step, schema, null);
table = schema.getTable(m_doubleColTableStep.getName());
assertNotNull(table);
assertEquals(1, table.getColumnCount());
assertEquals("id", table.getColumn(0).getName());