Package com.draagon.meta.manager.db.defs

Examples of com.draagon.meta.manager.db.defs.IndexDef


        // Check if the column is an index
        if ( isIndex( mf )) {
         
          String name = table.getNameDef().getName() + "_" + col + "_index";
           
          IndexDef index = new IndexDef( name, col );
         
          ((TableDef) table ).addIndex( index );
        }
      }
     
View Full Code Here

TOP

Related Classes of com.draagon.meta.manager.db.defs.IndexDef

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.