]> git.imager.perl.org - bse.git/blame - site/cgi-bin/modules/BSE/TB/TagCategoryDep.pm
use new style field macros for the file edit page
[bse.git] / site / cgi-bin / modules / BSE / TB / TagCategoryDep.pm
CommitLineData
34c37938
TC
1package BSE::TB::TagCategoryDep;
2use strict;
3use base 'Squirrel::Row';
4
5our $VERSION = "1.000";
6
7sub columns {
8 qw(id cat_id depname);
9}
10
11sub table { 'bse_tag_category_deps' }
12
13sub json_data {
14 my ($self) = @_;
15
16 return $self->data_only;
17}
18
191;