}
//}
if (entity instanceof PaasTableEntity) {
//first create/check if schema db exists
PaasTableEntity tableEnt = (PaasTableEntity)entity;
try {
String schemaName = tableEnt.getSchemaName();
session.execute(String.format(PaasUtils.CREATE_KEYSPACE_SIMPLE_FORMAT, schemaName, 1));
} catch (AlreadyExistsException e) {
// It's ok, ignore
}
//if schema/db already exists now create the table