CharmBoard/lib/CharmBoard/Schema/Source/Categories.pm

24 lines
545 B
Perl

package CharmBoard::Schema::Source::Categories;
use strict;
use warnings;
use experimental qw(try smartmatch);
use utf8;
use base qw(DBIx::Class::Core);
__PACKAGE__->table('categories');
__PACKAGE__->add_columns(
cat_id => {
data_type => 'integer',
is_auto_increment => 1,
is_nullable => 0, },
cat_rank => {
data_type => 'integer',
is_nullable => 0, },
cat_name => {
data_type => 'text',
is_nullable => 0, });
__PACKAGE__->set_primary_key('cat_id');
1;
__END__