package MySchema::Band;
use strict;
use warnings;

use base 'DBIx::Class';

__PACKAGE__->load_components(qw/ Core /);

__PACKAGE__->table("band");

__PACKAGE__->add_columns(
    id      => { data_type => "INTEGER", is_nullable => 0 },
    manager => { data_type => "INTEGER", is_nullable => 1 },
    band    => { data_type => "TEXT", is_nullable => 0 },
);

__PACKAGE__->set_primary_key("id");

__PACKAGE__->belongs_to( manager => 'MySchema::Manager', 'id' );

__PACKAGE__->has_many( user_bands => 'MySchema::UserBand', 'band' );

__PACKAGE__->many_to_many( users => 'user_bands', 'user' );

1;

