| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 34 | public function up() |
||
| 35 | { |
||
| 36 | $this->createSchema(function(Blueprint $table) { |
||
| 37 | $table->increments('id'); |
||
| 38 | $table->integer('page_id')->default(0); |
||
| 39 | $table->string('name'); |
||
| 40 | $table->string('localization'); |
||
| 41 | $table->string('uri'); |
||
| 42 | $table->string('locale')->default(config('app.locale')); |
||
| 43 | $table->timestamps(); |
||
| 44 | |||
| 45 | $table->unique(['uri', 'locale']); |
||
| 46 | }); |
||
| 47 | } |
||
| 48 | } |
||
| 49 |