use utf8;
package Schema::RackTables::0_20_6::Result::UserConfig;

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

=head1 NAME

Schema::RackTables::0_20_6::Result::UserConfig

=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<UserConfig>

=cut

__PACKAGE__->table("UserConfig");

=head1 ACCESSORS

=head2 varname

  data_type: 'char'
  is_foreign_key: 1
  is_nullable: 0
  size: 32

=head2 varvalue

  data_type: 'text'
  is_nullable: 0

=head2 user

  data_type: 'char'
  is_nullable: 0
  size: 64

=cut

__PACKAGE__->add_columns(
  "varname",
  { data_type => "char", is_foreign_key => 1, is_nullable => 0, size => 32 },
  "varvalue",
  { data_type => "text", is_nullable => 0 },
  "user",
  { data_type => "char", is_nullable => 0, size => 64 },
);

=head1 UNIQUE CONSTRAINTS

=head2 C<user_varname>

=over 4

=item * L</user>

=item * L</varname>

=back

=cut

__PACKAGE__->add_unique_constraint("user_varname", ["user", "varname"]);

=head1 RELATIONS

=head2 varname

Type: belongs_to

Related object: L<Schema::RackTables::0_20_6::Result::Config>

=cut

__PACKAGE__->belongs_to(
  "varname",
  "Schema::RackTables::0_20_6::Result::Config",
  { varname => "varname" },
  { is_deferrable => 1, on_delete => "CASCADE", on_update => "RESTRICT" },
);


# Created by DBIx::Class::Schema::Loader v0.07043 @ 2015-10-22 23:01:20
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:TdAeJZSBFj9JKoq7pPy37g


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