engine = 'InnoDB';
$table->integer('id', true);
$table->string('name');
$table->integer('code');
$table->string('email', 192);
$table->string('country');
$table->string('city');
$table->string('phone');
$table->string('adresse');
$table->timestamps(6);
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('clients');
}
}