move options down to Object.pm
[dbsrgits/SQL-Translator-2.0-ish.git] / lib / SQL / Translator / Object / Index.pm
index a8df3ea..ced7635 100644 (file)
@@ -17,7 +17,7 @@ class SQL::Translator::Object::Index {
         isa => Str,
         required => 1
     );
-    
+
     has 'columns' => (
         metaclass => 'Collection::Hash',
         is => 'rw',
@@ -31,19 +31,13 @@ class SQL::Translator::Object::Index {
         },
         default => sub { my %hash = (); tie %hash, 'Tie::IxHash'; return \%hash },
     );
-    
+
     has 'type' => (
         is => 'rw',
         isa => Str,
         required => 1
     );
 
-    has 'options' => (
-        is => 'rw',
-        isa => ArrayRef,
-        auto_deref => 1
-    );
-
     has 'extra' => (
         is => 'rw',
         isa => HashRef,