Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function up() |
||
14 | { |
||
15 | Schema::create('property_bag', function (Blueprint $table) { |
||
16 | $table->increments('id'); |
||
17 | $table->string('resource_type')->index(); |
||
18 | $table->integer('resource_id')->unsigned()->index(); |
||
19 | $table->string('key')->index(); |
||
20 | $table->text('value'); |
||
21 | $table->timestamps(); |
||
22 | |||
23 | $table->unique(['resource_type', 'resource_id', 'key']); |
||
24 | }); |
||
37 |