| 
     
      
      
      From: Boleslaw D. <bd...@o2...> - 2006-07-07 07:33:10
      
     
   | 
  User: bdaw    
  Date: 06/07/07 03:30:49
  Modified:    migration/src/resources/portal-migration-war/WEB-INF/classes/schema24/portal 
                        domain.hbm.xml
  Log:
  fixed wrong table name in migration app schema
  
  Revision  Changes    Path
  1.4       +3 -3      jboss-portal/migration/src/resources/portal-migration-war/WEB-INF/classes/schema24/portal/domain.hbm.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: domain.hbm.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-portal/migration/src/resources/portal-migration-war/WEB-INF/classes/schema24/portal/domain.hbm.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- domain.hbm.xml	13 Jun 2006 12:17:07 -0000	1.3
  +++ domain.hbm.xml	7 Jul 2006 07:30:49 -0000	1.4
  @@ -149,12 +149,12 @@
      </class>
      <class
            name="org.jboss.portal.migration.model24.portal.ObjectNodeSecurityConstraint"
  -         table="JBP_OBJECT_NODE_SECURITY">
  +         table="JBP_OBJECT_NODE_SEC">
         <!--<cache usage="read-write"/>-->
         <id name="key">
            <column name="PK"/>
            <generator class="native">
  -            <param name="sequence">security_seq</param>
  +            <param name="sequence">sec_seq</param>
            </generator>
         </id>
         <property
  @@ -165,7 +165,7 @@
         </property>
         <set
               name="actions"
  -            table="JBP_OBJECT_NODE_SECURITY_ACTIONS"
  +            table="JBP_OBJECT_NODE_SEC_ACTIONS"
               cascade="all-delete-orphan"
               fetch="join">
            <key column="PK"/>
  
  
  
 |