From 0991a9fb42afabd45d2b7504b84d6484b241c35d Mon Sep 17 00:00:00 2001
From: Filippo Bertilotti <filippobertilotti@gmail.com>
Date: Mon, 22 Jul 2024 12:03:54 +0200
Subject: [PATCH] creazione nuova richiesta relativa al form e controllo sui campi

---
 database/migrations/2023_05_02_170506_create_fakesso_vodafoneusers.php |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/database/migrations/2023_05_02_170506_create_fakesso_vodafoneusers.php b/database/migrations/2023_05_02_170506_create_fakesso_vodafoneusers.php
index 59d20fa..9af7a2f 100644
--- a/database/migrations/2023_05_02_170506_create_fakesso_vodafoneusers.php
+++ b/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();

--
Gitblit v1.8.0