Try this for create table if doesn’t exist
use Illuminate\Support\Facades\Schema;
if (!Schema::hasTable('tblCategory')) {
Schema::create('tblCategory', function($table){
$table->engine="InnoDB";
$table->increments('CategoryID');
$table->string('Category', 40);
$table->unique('Category', 'tblCategory_UK_Category');
$table->timestamps();
});
}