1 package SQL::Translator::Schema::Constants;
3 # ----------------------------------------------------------------------
4 # $Id: Constants.pm,v 1.5 2003-06-27 16:47:40 kycl4rk Exp $
5 # ----------------------------------------------------------------------
6 # Copyright (C) 2003 Ken Y. Clark <kclark@cpan.org>
8 # This program is free software; you can redistribute it and/or
9 # modify it under the terms of the GNU General Public License as
10 # published by the Free Software Foundation; version 2.
12 # This program is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 # General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
21 # -------------------------------------------------------------------
25 SQL::Translator::CMap::Constants - constants module
29 use SQL::Translator::CMap::Constants;
31 $table->add_constraint(
38 This module exports a several constants to like "primary key," etc.
43 use base qw( Exporter );
44 use vars qw( @EXPORT $VERSION );
46 $VERSION = sprintf "%d.%02d", q$Revision: 1.5 $ =~ /(\d+)\.(\d+)/;
60 # Because "CHECK" is a Perl keyword
62 use constant CHECK_C => 'CHECK';
64 use constant FOREIGN_KEY => 'FOREIGN KEY';
66 use constant FULL_TEXT => 'FULLTEXT';
68 use constant NOT_NULL => 'NOT NULL';
70 use constant NORMAL => 'NORMAL';
72 use constant NULL => 'NULL';
74 use constant PRIMARY_KEY => 'PRIMARY KEY';
76 use constant UNIQUE => 'UNIQUE';
84 Ken Y. Clark E<lt>kclark@cpan.orgE<gt>
90 This library is free software; you can redistribute it and/or modify
91 it under the same terms as Perl itself.