Playing with constants.
Ken Youens-Clark [Fri, 9 May 2003 17:06:46 +0000 (17:06 +0000)]
lib/SQL/Translator/Schema/Constants.pm

index 5caf975..06640ce 100644 (file)
@@ -1,7 +1,7 @@
 package SQL::Translator::Schema::Constants;
 
 # ----------------------------------------------------------------------
-# $Id: Constants.pm,v 1.2 2003-05-05 04:32:39 kycl4rk Exp $
+# $Id: Constants.pm,v 1.3 2003-05-09 17:06:46 kycl4rk Exp $
 # ----------------------------------------------------------------------
 # Copyright (C) 2003 Ken Y. Clark <kclark@cpan.org>
 #
@@ -43,12 +43,14 @@ use strict;
 use base qw( Exporter );
 use vars qw( @EXPORT $VERSION );
 require Exporter;
-$VERSION = (qw$Revision: 1.2 $)[-1];
+$VERSION = (qw$Revision: 1.3 $)[-1];
 
 @EXPORT = qw[ 
     CHECK_C
     FOREIGN_KEY
+    FULL_TEXT
     NOT_NULL
+    NORMAL
     NULL
     PRIMARY_KEY
     UNIQUE
@@ -59,13 +61,17 @@ $VERSION = (qw$Revision: 1.2 $)[-1];
 #
 use constant CHECK_C => 'CHECK';
 
-use constant FOREIGN_KEY => 'FOREIGN_KEY';
+use constant FOREIGN_KEY => 'FOREIGN KEY';
 
-use constant NOT_NULL => 'NOT_NULL';
+use constant FULL_TEXT => 'FULL_TEXT';
+
+use constant NOT_NULL => 'NOT NULL';
+
+use constant NORMAL => 'NORMAL';
 
 use constant NULL => 'NULL';
 
-use constant PRIMARY_KEY => 'PRIMARY_KEY';
+use constant PRIMARY_KEY => 'PRIMARY KEY';
 
 use constant UNIQUE => 'UNIQUE';