| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | public function up() |
||
| 10 | { |
||
| 11 | Schema::create('seo_meta', function (Blueprint $table) { |
||
| 12 | $table->bigIncrements('id'); |
||
| 13 | $table->bigInteger('object_id')->nullable(); |
||
| 14 | $table->string('slug')->unique(); |
||
| 15 | $table->string('type'); |
||
| 16 | $table->string('title')->nullable(); |
||
| 17 | $table->string('description')->nullable(); |
||
| 18 | $table->timestamps(); |
||
| 19 | $table->index('slug'); |
||
| 20 | $table->index('type'); |
||
| 21 | }); |
||
| 29 |