1 package # hide from PAUSE
2 DBICTest::Schema::Bookmark;
4 use base qw/DBICTest::BaseResult/;
10 __PACKAGE__->table('bookmark');
11 __PACKAGE__->add_columns(
13 data_type => 'integer',
14 is_auto_increment => 1
17 data_type => 'integer',
22 __PACKAGE__->set_primary_key('id');
23 __PACKAGE__->belongs_to(link => 'DBICTest::Schema::Link', 'link', { on_delete => 'SET NULL' } );