package Soccer::Model::Squad::Schema;
use Jifty::DBI::Schema;

# Your column definitions go here.  See L<Jifty::DBI::Schema> for
# documentation about how to write column definitions.

column id =>
	type is 'integer',
	label is 'ID#',
	is mandatory,
	is distinct;

column name =>
	type is 'text',
	label is 'Squad';

package Soccer::Model::Squad;
use base qw/Soccer::Record/;

# Your model-specific methods go here.

1;

