| Conditions | 1 |
| Paths | 1 |
| Total Lines | 18 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | public function up() |
||
| 10 | { |
||
| 11 | Schema::create('duck_funk_pages', function (Blueprint $table) { |
||
| 12 | $table->bigIncrements('id'); |
||
| 13 | $table->string('title', 255)->nullable(false); |
||
| 14 | $table->string('slug', 255)->nullable(false); |
||
| 15 | $table->string('route', 255)->nullable(false); |
||
| 16 | $table->string('meta_title', 255)->nullable(false); |
||
| 17 | $table->string('meta_description', 255)->nullable(false); |
||
| 18 | $table->unsignedBigInteger('min_rank'); |
||
| 19 | $table->unsignedBigInteger('parent_id'); |
||
| 20 | $table->boolean('active')->default(1)->nullable(false); |
||
| 21 | $table->boolean('no_robots')->default(0)->nullable(false); |
||
| 22 | $table->timestamps(); |
||
| 23 | $table->timestamp('published_at')->nullable(); |
||
| 24 | $table->softDeletes(); |
||
| 25 | }); |
||
| 26 | } |
||
| 27 | |||
| 33 |