Debugging why sqlt deployment order of views is wrong.
[dbsrgits/DBIx-Class-ResultSource-MultipleTableInheritance.git] / t / lib / NoSequenceSalad / Result / Salad.pm
CommitLineData
3365fc70 1package # hide from PAUSE
2 NoSequenceSalad::Result::Salad;
70955816 3
4use strict;
5use warnings;
6use parent 'DBIx::Class::Core';
7use aliased 'DBIx::Class::ResultSource::MultipleTableInheritance' => 'MTI';
8
9__PACKAGE__->table_class(MTI);
10__PACKAGE__->table('salad');
11__PACKAGE__->add_columns(
12 "id", { data_type => "integer", is_auto_increment => 1 },
13 "fresh", { data_type => "boolean", },
14);
15
16__PACKAGE__->set_primary_key("id");
17
181;