oops, these really do have content
[dbsrgits/SQL-Translator-2.0-ish.git] / lib / SQL / Translator / Object / View.pm
1 package SQL::Translator::Object::View;
2 use Moose;
3 use MooseX::Types::Moose qw(ArrayRef);
4 use SQL::Translator::Types qw();
5 extends 'SQL::Translator::Object::Table';
6
7 has 'sql' => (is => 'ro', isa => Str, required => 1);
8
9 1;