add/use new Bit type (0 or 1)
Justin Hunter [Thu, 3 Sep 2009 20:00:42 +0000 (13:00 -0700)]
lib/SQL/Translator/Object/Column.pm
lib/SQL/Translator/Types.pm

index 844364c..71eda45 100644 (file)
@@ -2,7 +2,7 @@ use MooseX::Declare;
 class SQL::Translator::Object::Column extends SQL::Translator::Object {
     use MooseX::Types::Moose qw(Bool Int Maybe Str);
     use MooseX::MultiMethods;
-    use SQL::Translator::Types qw(ColumnSize Constraint Table Trigger);
+    use SQL::Translator::Types qw(Bit ColumnSize Constraint Table Trigger);
 
     has 'table' => (
         is => 'rw',
@@ -50,8 +50,9 @@ class SQL::Translator::Object::Column extends SQL::Translator::Object {
 
     has 'is_auto_increment' => (
         is => 'rw',
-        isa => Bool,
+        isa => Bit,
         required => 1,
+        coerce => 1,
         default => 0
     );
 
index 182636a..fd61352 100644 (file)
@@ -1,7 +1,8 @@
 use MooseX::Declare;
 class SQL::Translator::Types {
     use MooseX::Types::Moose qw(ArrayRef CodeRef Int Maybe Str Undef);
-    use MooseX::Types -declare, [qw(Column Constraint ForeignKey Index PrimaryKey Procedure Schema Sequence Table Trigger View DBIHandle ColumnSize Parser Producer Translator)];
+    use MooseX::Types -declare, [qw(Column Constraint ForeignKey Index PrimaryKey Procedure Schema Sequence Table Trigger View
+                                    Bit DBIHandle ColumnSize Parser Producer Translator)];
     
     class_type Column, { class => 'SQL::Translator::Object::Column' };
     class_type Constraint, { class => 'SQL::Translator::Object::Constraint' };
@@ -19,6 +20,11 @@ class SQL::Translator::Types {
     class_type Producer, { class => 'SQL::Translator::Producer' };
     class_type Translator, { class => 'SQL::Translator' };
 
+    subtype Bit, as Int, where { $_ == 1 || $_ == 0 };
+    coerce Bit,
+        from Undef, via { 0 },
+        from Str,  via { $_ eq '1' ? 1 : 0 };
+
     subtype ColumnSize, as ArrayRef[Int];
     coerce ColumnSize,
         from Int, via { [ $_ ] },