X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FDBICTest%2FSchema%2FQuotes.pm;fp=t%2Flib%2FDBICTest%2FSchema%2FQuotes.pm;h=0d84eb8e8abb0ecc64cc9bac68d4051c2fa7b854;hb=1c8dc11fc712d6d6580d828707322dd658f86221;hp=a6fe2465137d0bb1c183ed4d6198078778ec56a9;hpb=b25af2a8cd075015695e74ef077afd991442f615;p=dbsrgits%2FDBIx-Class.git diff --git a/t/lib/DBICTest/Schema/Quotes.pm b/t/lib/DBICTest/Schema/Quotes.pm index a6fe246..0d84eb8 100644 --- a/t/lib/DBICTest/Schema/Quotes.pm +++ b/t/lib/DBICTest/Schema/Quotes.pm @@ -15,6 +15,15 @@ __PACKAGE__->add_columns( is_auto_increment => 1, accessor => 'has_more_quotes', }, + 'has # comment' => { + data_type => 'integer', + accessor => 'has_comment', + }, + artistid => { + data_type => 'integer', + }, ); +__PACKAGE__->belongs_to(artist => 'DBICTest::Schema::Artist', 'artistid'); + 1;