You are viewing a plain text version of this content. The canonical link for it is here.
Posted to torque-dev@db.apache.org by mp...@apache.org on 2002/12/08 19:56:04 UTC

cvs commit: jakarta-turbine-torque/src/templates/sql/base/db2400 index.vm

mpoeschl    2002/12/08 10:56:04

  Modified:    src/templates/sql/base/db2400 index.vm
  Log:
  replace deprecated $index.IndexColumnList with $index.ColumnList
  
  Revision  Changes    Path
  1.3       +1 -1      jakarta-turbine-torque/src/templates/sql/base/db2400/index.vm
  
  Index: index.vm
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-torque/src/templates/sql/base/db2400/index.vm,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- index.vm	28 Nov 2001 11:23:56 -0000	1.2
  +++ index.vm	8 Dec 2002 18:56:03 -0000	1.3
  @@ -1,4 +1,4 @@
   #foreach ($index in $table.Indices)
  -CREATE #if($index.IsUnique)UNIQUE#end INDEX $index.Name ON $table.Name ($index.IndexColumnList);
  +CREATE #if($index.IsUnique)UNIQUE#end INDEX $index.Name ON $table.Name ($index.ColumnList);
   #end