Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
16 | public function up(): void |
||
17 | { |
||
18 | Schema::create(config('rinvex.statistics.tables.platforms'), function (Blueprint $table) { |
||
19 | // Columns |
||
20 | $table->increments('id'); |
||
21 | $table->string('family'); |
||
22 | $table->string('version')->nullable(); |
||
23 | $table->integer('count')->unsigned()->default(0); |
||
24 | }); |
||
25 | } |
||
26 | |||
37 |