You are viewing a plain text version of this content. The canonical link for it is here.
Posted to slide-dev@jakarta.apache.org by re...@apache.org on 2001/04/08 05:28:25 UTC

cvs commit: jakarta-slide/src/doc howto-jdbcstore.xml

remm        01/04/07 20:28:25

  Modified:    src/doc  howto-jdbcstore.xml
  Log:
  - Forgot the command to set up the content store in the mySQL.
    Submitted by Peter Hawkins <peter at globalvision.com.au>
  
  Revision  Changes    Path
  1.3       +5 -3      jakarta-slide/src/doc/howto-jdbcstore.xml
  
  Index: howto-jdbcstore.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-slide/src/doc/howto-jdbcstore.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- howto-jdbcstore.xml	2001/03/06 06:27:00	1.2
  +++ howto-jdbcstore.xml	2001/04/08 03:28:25	1.3
  @@ -259,12 +259,14 @@
   create table branches(uri blob, xnumber varchar(20), childnumber 
     varchar(20) );
   
  -create table revision(uri blob, xnumber varchar(20), branchname blob );
  +create table revision(uri blob, xnumber varchar(20), branchname blob);
   
  -create table label(uri blob, xnumber varchar(20), label blob );
  +create table label(uri blob, xnumber varchar(20), label blob);
   
   create table property(uri blob, xnumber varchar(20), name blob, value 
  -  blob, namespace blob, type varchar(100), protected int );
  +  blob, namespace blob, type varchar(100), protected int);
  +
  +create table revisioncontent(uri blob, xnumber varchar(20), content blob);
   </pre>
       </p>