use utf8; package FBCE::Schema::Result::Result; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE =head1 NAME FBCE::Schema::Result::Result =cut use strict; use warnings; use base 'DBIx::Class::Core'; =head1 COMPONENTS LOADED =over 4 =item * L =back =cut __PACKAGE__->load_components("InflateColumn::DateTime"); __PACKAGE__->table_class("DBIx::Class::ResultSource::View"); =head1 TABLE: C =cut __PACKAGE__->table("results"); =head1 ACCESSORS =head2 id data_type: 'integer' is_nullable: 1 =head2 login data_type: 'text' is_nullable: 1 original: {data_type => "varchar"} =head2 realname data_type: 'text' is_nullable: 1 original: {data_type => "varchar"} =head2 incumbent data_type: 'boolean' is_nullable: 1 =head2 votes data_type: 'bigint' is_nullable: 1 =cut __PACKAGE__->add_columns( "id", { data_type => "integer", is_nullable => 1 }, "login", { data_type => "text", is_nullable => 1, original => { data_type => "varchar" }, }, "realname", { data_type => "text", is_nullable => 1, original => { data_type => "varchar" }, }, "incumbent", { data_type => "boolean", is_nullable => 1 }, "votes", { data_type => "bigint", is_nullable => 1 }, ); # Created by DBIx::Class::Schema::Loader v0.07039 @ 2014-03-10 19:05:50 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:3syEv0rHN8n0xM1HxIPtWg 1; # $FreeBSD$