Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
31 | public function up() |
||
32 | { |
||
33 | $this->createSchema(function (Blueprint $table) { |
||
34 | $table->bigIncrements('id'); |
||
35 | $table->bigInteger('domain_id', false, true)->index(); |
||
36 | $table->string('url')->index(); |
||
37 | $table->string('host'); |
||
38 | $table->string('medium')->nullable()->index(); |
||
39 | $table->string('source')->nullable()->index(); |
||
40 | $table->string('search_terms_hash')->nullable()->index(); |
||
41 | $table->timestamp('created_at')->index(); |
||
42 | $table->timestamp('updated_at')->index(); |
||
43 | }); |
||
44 | } |
||
45 | } |
||
46 |