X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FDBICTest%2FSchema%2FTreeLike.pm;h=b5b276317703d4c2fd047e6407e329b5805d8280;hb=89cf6a706832b79c02f980077bd30525b3716ee0;hp=49abb691a7649c50e40815ed53b54704bab7f648;hpb=c6d74d3ead7c87c6c63997b8e39fa638f4851559;p=dbsrgits%2FDBIx-Class.git diff --git a/t/lib/DBICTest/Schema/TreeLike.pm b/t/lib/DBICTest/Schema/TreeLike.pm index 49abb69..b5b2763 100644 --- a/t/lib/DBICTest/Schema/TreeLike.pm +++ b/t/lib/DBICTest/Schema/TreeLike.pm @@ -1,18 +1,27 @@ package # hide from PAUSE DBICTest::Schema::TreeLike; -use base qw/DBIx::Class/; - -__PACKAGE__->load_components(qw/PK::Auto::SQLite Core/); +use base qw/DBIx::Class::Core/; __PACKAGE__->table('treelike'); __PACKAGE__->add_columns( 'id' => { data_type => 'integer', is_auto_increment => 1 }, 'parent' => { data_type => 'integer' }, - 'name' => { data_type => 'varchar' }, + 'name' => { data_type => 'varchar', + size => 100, + }, ); __PACKAGE__->set_primary_key(qw/id/); __PACKAGE__->belongs_to('parent', 'TreeLike', { 'foreign.id' => 'self.parent' }); +__PACKAGE__->has_many('children', 'TreeLike', { 'foreign.parent' => 'self.id' }); + +## since this is a self referential table we need to do a post deploy hook and get +## some data in while constraints are off + + sub sqlt_deploy_hook { + my ($self, $sqlt_table) = @_; + $sqlt_table->add_index(name => 'idx_name', fields => ['name']); + } 1;