Update of /cvsroot/openinteract/OpenInteract2/pkg/base_error/OpenInteract2/SQLInstall
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19034/OpenInteract2/SQLInstall
Modified Files:
Error.pm
Log Message:
OIN-35: remove structure installs and only keep security
Index: Error.pm
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract2/pkg/base_error/OpenInteract2/SQLInstall/Error.pm,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Error.pm 20 Oct 2003 03:05:53 -0000 1.2
--- Error.pm 25 Feb 2005 05:14:35 -0000 1.3
***************
*** 6,24 ****
use base qw( OpenInteract2::SQLInstall );
- # NOTE: No data migrated since the only data we contain are errors :-)
-
- sub get_structure_set {
- return 'error_object';
- }
-
- # We don't care what the $set is since there's only one
-
- sub get_structure_file {
- my ( $class, $set, $type ) = @_;
- return 'sys_error_oracle.sql' if ( $type eq 'Oracle' );
- return 'sys_error_interbase.sql' if ( $type eq 'InterBase' );
- return 'sys_error.sql';
- }
-
sub get_security_file {
return 'install_security.dat';
--- 6,9 ----
|