Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | public function up() |
||
13 | { |
||
14 | Schema::create('content_type_texts', function (Blueprint $table) { |
||
15 | $table->bigIncrements('id'); |
||
16 | $table->nullableMorphs('linkable'); |
||
17 | $table->string('locale', 5); |
||
18 | $table->string('group', 75)->nullable(); |
||
19 | $table->string('key', 75)->nullable(); |
||
20 | $table->longText('value')->nullable(); |
||
21 | $table->timestamps(); |
||
22 | $table->softDeletes(); |
||
23 | $table->unique(['linkable_type', 'linkable_id', 'locale', 'group', 'key']); |
||
24 | }); |
||
35 |