Examples of ERXModelVersion


Examples of er.extensions.migration.ERXModelVersion

import er.uber.model.EmployeeStatus;

public class Uber0 extends ERXMigrationDatabase.Migration implements IERXPostMigration {
  @Override
  public NSArray<ERXModelVersion> modelDependencies() {
    return new NSArray<ERXModelVersion>(new ERXModelVersion("ERAttachment", 1));
  }
View Full Code Here

Examples of er.extensions.migration.ERXModelVersion

    _allowsNull = allowsNull;
  }
 
  @Override
  public NSArray<ERXModelVersion> modelDependencies() {
    return new NSArray<ERXModelVersion>(new ERXModelVersion("ERAttachment", 1));
  }
View Full Code Here

Examples of er.extensions.migration.ERXModelVersion

    _tagEntityName = tagEntityName;
  }

  @Override
  public NSArray<ERXModelVersion> modelDependencies() {
    return new NSArray<ERXModelVersion>(new ERXModelVersion("ERTaggable", 0));
  }
View Full Code Here

Examples of er.extensions.migration.ERXModelVersion

import er.extensions.migration.IERXPostMigration;

public class BugTracker0 extends ERXMigrationDatabase.Migration implements IERXPostMigration {
  @Override
  public NSArray<ERXModelVersion> modelDependencies() {
    return new NSArray<ERXModelVersion>(new ERXModelVersion[] { new ERXModelVersion("ERTaggable", 0)new ERXModelVersion("ERAttachment", 1) });
  }
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.