<?php

use Illuminate\Database\Eloquent\SoftDeletingTrait;

/**
* This model manages the matches between mentors and mentees
*/
class Match extends Eloquent
{
	protected $table = 'matches';

	protected $softDelete = true;

	protected $dates = ['deleted_at'];

	
}