Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
11 | public function up() |
||
12 | { |
||
13 | $this->createTable(static function (Blueprint $table) { |
||
14 | $table->bigIncrements('id'); |
||
15 | |||
16 | $table->string('key')->nullable()->index(); |
||
17 | $table->string('host'); |
||
18 | $table->text('url'); |
||
19 | |||
20 | $table->unsignedBigInteger('visited')->default(0); |
||
21 | |||
22 | $table->timestamps(); |
||
23 | }); |
||
31 |