use utf8;
package CLMApp::Schema::Result::Country;

# Created by DBIx::Class::Schema::Loader
# DO NOT MODIFY THE FIRST PART OF THIS FILE

=head1 NAME

CLMApp::Schema::Result::Country

=cut

use strict;
use warnings;

use base 'DBIx::Class::Core';

=head1 COMPONENTS LOADED

=over 4

=item * L<DBIx::Class::InflateColumn::DateTime>

=back

=cut

__PACKAGE__->load_components("InflateColumn::DateTime");

=head1 TABLE: C<Country>

=cut

__PACKAGE__->table("Country");

=head1 ACCESSORS

=head2 countrycode

  data_type: 'char'
  is_nullable: 0
  size: 3

=head2 fullname

  data_type: 'varchar'
  is_nullable: 0
  size: 100

=head2 displayname

  data_type: 'varchar'
  is_nullable: 0
  size: 100

=head2 active

  data_type: 'tinyint'
  is_nullable: 0

=cut

__PACKAGE__->add_columns(
  "countrycode",
  { data_type => "char", is_nullable => 0, size => 3 },
  "fullname",
  { data_type => "varchar", is_nullable => 0, size => 100 },
  "displayname",
  { data_type => "varchar", is_nullable => 0, size => 100 },
  "active",
  { data_type => "tinyint", is_nullable => 0 },
);

=head1 PRIMARY KEY

=over 4

=item * L</countrycode>

=back

=cut

__PACKAGE__->set_primary_key("countrycode");


# Created by DBIx::Class::Schema::Loader v0.07039 @ 2017-05-06 14:53:22
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:HP6xVxk/AEj+E+kO9M/Fqg


# You can replace this text with custom code or comments, and it will be preserved on regeneration
1;
