The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package CAPExtTest::Schema::Result::Stations;
use parent 'DBIx::Class';
use strict;
use warnings;

__PACKAGE__->load_components('Core');
__PACKAGE__->table('Station');
__PACKAGE__->add_columns(qw/ id bill ted /);
__PACKAGE__->set_primary_key('id');

sub TO_JSON {
   my $self = shift;
   return {
      map { $_ => $self->$_ } qw{id bill}
   };
}

1;