taylor      02/05/26 08:40:13

  Modified:    build/torque/schema Tag: security_14 security-schema.xml
  Log:
  (this comment is for the last commit)
  - modified psml Security entry to take an id
  - updated psml marshalling unit tests
  - added two tables to DB for security (JETSPEED_CONSTRAINT, JETSPEED_ACL)
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.3   +7 -7      jakarta-jetspeed/build/torque/schema/Attic/security-schema.xml
  
  Index: security-schema.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-jetspeed/build/torque/schema/Attic/security-schema.xml,v
  retrieving revision 1.1.2.2
  retrieving revision 1.1.2.3
  diff -u -r1.1.2.2 -r1.1.2.3
  --- security-schema.xml       26 May 2002 15:33:34 -0000      1.1.2.2
  +++ security-schema.xml       26 May 2002 15:40:13 -0000      1.1.2.3
  @@ -13,7 +13,7 @@
   <!-- users, and security.                                                 -->
   <!-- ==================================================================== -->
   <!-- @author: <a href="mailto:[EMAIL PROTECTED]";>David Sean Taylor</a>    -->
  -<!-- @version $Id: security-schema.xml,v 1.1.2.2 2002/05/26 15:33:34 taylor Exp $ 
-->
  +<!-- @version $Id: security-schema.xml,v 1.1.2.3 2002/05/26 15:40:13 taylor Exp $ 
-->
   <!-- ==================================================================== -->
   
   <database name="@DATABASE_NAME@">
  @@ -38,25 +38,25 @@
     
     </table>
   
  -  <table name="JETSPEED_SECURITY">
  -    <column name="SECURITY_ID" required="true" primaryKey="true" type="INTEGER"/>
  +  <table name="JETSPEED_CONSTRAINT">
  +    <column name="CONSTRAINT_ID" required="true" primaryKey="true" type="INTEGER"/>
     </table>
     
     <table name="JETSPEED_ACL">
       <column name="ACCESS_ID" required="true" primaryKey="true" type="INTEGER"/>
  -    <column name="SECURITY_ID" required="true" primaryKey="true" type="INTEGER"/>
  +    <column name="CONSTRAINT_ID" required="true" primaryKey="true" type="INTEGER"/>
       <column name="RESOURCE" required="true" size="99" type="VARCHAR"/>
       <column name="RESOURCE_TYPE" required="true" size="32" type="VARCHAR"/>
       <column name="ACTION" required="true" size="32" type="VARCHAR"/>
       <column name="ALLOW_TYPE" required="true" size="32" type="VARCHAR"/>
       <column name="PRINCIPAL" required="true" size="32" type="VARCHAR"/>
   
  -    <foreign-key foreignTable="JETSPEED_SECURITY" onDelete="cascade">
  -      <reference local="SECURITY_ID" foreign="SECURITY_ID" />
  +    <foreign-key foreignTable="JETSPEED_CONSTRAINT" onDelete="cascade">
  +      <reference local="CONSTRAINT_ID" foreign="CONSTRAINT_ID" />
       </foreign-key>
   
       <index>
  -      <index-column name="SECURITY_ID"/>
  +      <index-column name="CONSTRAINT_ID"/>
       </index>
   
     </table>
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to