Filippo Bertilotti
2024-07-22 0991a9fb42afabd45d2b7504b84d6484b241c35d
database/migrations/2023_05_02_170506_create_fakesso_vodafoneusers.php
@@ -9,12 +9,13 @@
    {
        Schema::create('fakesso_vodafoneusers', function (Blueprint $table) {
            $table->increments('id')->comment('Identificatore univoco profilo');
            $table->integer('LinkedMSISDN')->unsigned()->comment('identificatore MSISDN');
            $table->foreign('LinkedMSISDN')->references('id')->on('fakesso_msisdn');
            //$table->integer('LinkedMSISDN')->unsigned()->comment('identificatore MSISDN');
            //$table->foreign('LinkedMSISDN')->references('id')->on('fakesso_msisdn');
            $table->string('Name', 255)->nullable();
            $table->string('Surname', 255)->nullable();
            $table->string('EmailAddress', 255)->nullable();
            $table->string('ProfileIdentifier', 255)->nullable();
            $table->string('Username', 255)->nullable();
            $table->string('FiscalCode', 255)->nullable();
            $table->string('Type_ID', 255)->nullable();
            $table->string('Custcode', 255)->nullable();