Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function up() |
||
15 | { |
||
16 | Schema::create('control_roles', function (Blueprint $table) { |
||
17 | $table->bigIncrements('id'); |
||
18 | $table->unsignedBigInteger('data_provider_id')->unique(); |
||
19 | $table->unsignedInteger('position_id'); |
||
20 | $table->unsignedInteger('group_id'); |
||
21 | $table->timestamps(); |
||
22 | $table->softDeletes(); |
||
23 | }); |
||
36 |