Package org.sonar.jpa.entity

Examples of org.sonar.jpa.entity.SchemaMigration


    super.start();
    setupSchemaVersion(version);
  }

  protected void setupSchemaVersion(int version) {
    SchemaMigration migration = new SchemaMigration();
    migration.setVersion(version);
    EntityManager manager = createEntityManager();
    try {
      manager.getTransaction().begin();
      manager.persist(migration);
      manager.getTransaction().commit();
View Full Code Here

TOP

Related Classes of org.sonar.jpa.entity.SchemaMigration

Copyright © 2018 www.massapicom. 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.