Examples of migrate_down()


Examples of com.metadot.book.connectr.server.migrations.Migration.migrate_down()

      // call the 'migrate_up' or down method as appropriate,
      // which every class of type Migration must support.
      if (direction.equals("down")) {
        logger.info("migrating down: " + mg);
        res = mg.migrate_down(cursor, range, params);
        cursor = res.get("cursor");
      }
      else {
        logger.info("migrating up: " + mg);
        res = mg.migrate_up(cursor, range, params);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.