<?php 

/**
* This class manages the Roles in the application
* A role could be a mentor or mentee or both
*/
class Role extends \Eloquent
{
	protected $table = 'roles';

	protected $fillable = array('name');
}