@@ -13,14 +13,14 @@ |
||
| 13 | 13 | */ |
| 14 | 14 | public function up() |
| 15 | 15 | { |
| 16 | - Schema::create('meta_tags', function (Blueprint $table) { |
|
| 16 | + Schema::create('meta_tags', function(Blueprint $table) { |
|
| 17 | 17 | $table->increments('id'); |
| 18 | 18 | |
| 19 | 19 | // url path - without domain |
| 20 | 20 | $table->string('path')->nullable(); |
| 21 | 21 | |
| 22 | 22 | // metatagable: node, term,... |
| 23 | - $table->nullableMorphs('metatagable','metatagable_morphs'); |
|
| 23 | + $table->nullableMorphs('metatagable', 'metatagable_morphs'); |
|
| 24 | 24 | |
| 25 | 25 | // Meta-tags |
| 26 | 26 | $table->string('title')->nullable(); |