increments('id')->comment('Identificatore univoco msisdn'); $table->integer('LinkedUser')->unsigned()->comment('vodafoneuser di appartenenza'); $table->foreign('LinkedUser')->references('id')->on('fakesso_vodafoneusers'); $table->string('MSISDN', 255)->nullable(); $table->string('CardType', 255)->nullable(); $table->string('IdPiano', 255)->nullable(); $table->string('VodafoneOne', 255)->nullable(); $table->string('TopClub', 255)->nullable(); $table->string('SenioriryCluster', 255)->nullable(); }); } public function down() { Schema::dropIfExists('fakesso_msisdn'); } };