increments('id');
$table->integer('user_id');
$table->string('fname');
$table->string('lname');
$table->string('email');
$table->string('mobile');
$table->longText('message');
$table->timestamps();
});
}
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('contacts');
}
}