proper parsing, using add_* instead of throwing a whole blob in
[dbsrgits/SQL-Translator-2.0-ish.git] / lib / SQL / Translator / Parser / DBI / MySQL.pm
index 427e325..0e8e163 100644 (file)
@@ -1,8 +1,6 @@
 package SQL::Translator::Parser::DBI::MySQL;
-use Moose;
-use SQL::Translator::Types qw(Schema);
-with 'SQL::Translator::Parser::DBI::Dialect';
+use Moose::Role;
 
-has 'schema' => (is => 'ro', isa => Schema, default => sub { SQL::Translator::Object::Schema->new( { name => '' }) });
+no Moose;
 
 1;