davide.cucurnia@vola.it
2024-07-08 74853e20414547967b11ab4abe9c00ffa46a24fc
aggiunta campi rimanenti
2 files modified
6 ■■■■■ changed files
database/migrations/2023_05_02_170505_create_fakesso_products.php 5 ●●●●● patch | view | raw | blame | history
database/migrations/2023_05_02_170506_create_fakesso_vodafoneusers.php 1 ●●●● patch | view | raw | blame | history
database/migrations/2023_05_02_170505_create_fakesso_products.php
@@ -9,12 +9,17 @@
    {
        Schema::create('fakesso_products', function (Blueprint $table) {
            $table->increments('id')->comment('Identificatore univoco profilo');
            $table->string('productId', 255)->comment('identificatore del prodotto');
            //$table->integer('LinkedMSISDN')->unsigned()->comment('MSISDN di appartenenza');
            //$table->foreign('LinkedMSISDN')->references('id')->on('fakesso_msisdn');
            $table->string('tmProduct', 255)->nullable();
            $table->string('tmCode', 255)->nullable();
            $table->boolean('isService')->nullable();
            $table->string('OMProductId', 255)->nullable();
            $table->string('OMSource', 255)->nullable();
            $table->string('Name', 255)->nullable();
            $table->string('Description', 255)->nullable();
            $table->string('activationDateTime', 255)->nullable();
        });
    }
database/migrations/2023_05_02_170506_create_fakesso_vodafoneusers.php
@@ -15,6 +15,7 @@
            $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();