[otrs-cvs] CVS: otrs/Kernel/System/DB oracle.pm,1.13,1.14

cvs-log at otrs.org cvs-log at otrs.org
Wed Oct 4 14:13:51 CEST 2006


Update of /home/cvs/otrs/Kernel/System/DB
In directory lancelot:/tmp/cvs-serv8107/Kernel/System/DB

Modified Files:
	oracle.pm 
Log Message:
removed DROP TABLE by TableCreate()

Index: oracle.pm
===================================================================
RCS file: /home/cvs/otrs/Kernel/System/DB/oracle.pm,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -r1.13 -r1.14
*** oracle.pm	6 Sep 2006 14:25:35 -0000	1.13
--- oracle.pm	4 Oct 2006 11:13:49 -0000	1.14
***************
*** 88,92 ****
          }
          if (($Tag->{Tag} eq 'Table' || $Tag->{Tag} eq 'TableCreate') && $Tag->{TagType} eq 'Start') {
-             push (@Return, "DROP TABLE $Tag->{Name} CASCADE CONSTRAINTS");
              $SQLStart .= "CREATE TABLE $Tag->{Name} (\n";
              $TableName = $Tag->{Name};
--- 88,91 ----
***************
*** 207,211 ****
              $SQL .= $Self->{'DB::Comment'}."----------------------------------------------------------\n";
          }
!         $SQL .= "DROP TABLE $Tag->{Name}";
          return ($SQL);
      }
--- 206,210 ----
              $SQL .= $Self->{'DB::Comment'}."----------------------------------------------------------\n";
          }
!         $SQL .= "DROP TABLE $Tag->{Name} CASCADE CONSTRAINTS";
          return ($SQL);
      }



More information about the cvs-log mailing list