davide.cucurnia@vola.it
2024-02-05 2f9a34f716957451b80dc2421e1794a264dba9d4
commit | author | age
2f9a34 1 <?php
D 2
3 use Illuminate\Database\Migrations\Migration;
4 use Illuminate\Database\Schema\Blueprint;
5 use Illuminate\Support\Facades\Schema;
6
7 return new class extends Migration {
8     public function up()
9     {
10         Schema::create('fakesso_products', function (Blueprint $table) {
11             $table->increments('id')->comment('Identificatore univoco profilo');
12             $table->bigInteger('LinkedMSISDN')->unsigned()->comment('MSISDN di appartenenza');
13             $table->string('tmCode', 255)->nullable();
14             $table->string('OMProductId', 255)->nullable();
15             $table->string('Name', 255)->nullable();
16             $table->string('Description', 255)->nullable();
17         });
18     }
19
20     public function down()
21     {
22         Schema::dropIfExists('fakesso_products');
23     }
24 };