Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
14 | public function up() |
||
15 | { |
||
16 | Schema::create(config('laravel-sso.brokerUserTable', 'broker_user'), function (Blueprint $table) { |
||
17 | $table->increments('id'); |
||
18 | |||
19 | $table->integer('user_id')->foreign('user_id')->references('id')->on('users'); |
||
20 | $table->integer('broker_id')->foreign('broker_id')->references('id')->on('brokers'); |
||
21 | $table->timestamps(); |
||
22 | $table->softDeletes(); |
||
23 | }); |
||
36 |