Fixed VERSION strings.
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Schema / Constraint.pm
index df1fdae..98fc027 100644 (file)
@@ -1,7 +1,7 @@
 package SQL::Translator::Schema::Constraint;
 
 # ----------------------------------------------------------------------
-# $Id: Constraint.pm,v 1.5 2003-06-06 22:35:16 kycl4rk Exp $
+# $Id: Constraint.pm,v 1.6 2003-06-18 23:14:00 kycl4rk Exp $
 # ----------------------------------------------------------------------
 # Copyright (C) 2003 Ken Y. Clark <kclark@cpan.org>
 #
@@ -51,7 +51,7 @@ use SQL::Translator::Utils 'parse_list_arg';
 use base 'Class::Base';
 use vars qw($VERSION $TABLE_COUNT $VIEW_COUNT);
 
-$VERSION = 1.00;
+$VERSION = (qw$Revision: 1.6 $)[-1];
 
 my %VALID_CONSTRAINT_TYPE = (
     PRIMARY_KEY, 1,