Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function up() |
||
15 | { |
||
16 | if (!Schema::hasTable('oauth_personal_access_clients')) { |
||
17 | Schema::create('oauth_personal_access_clients', function (Blueprint $table) { |
||
18 | $table->increments('id'); |
||
19 | $table->unsignedInteger('client_id')->index(); |
||
20 | $table->timestamps(); |
||
21 | }); |
||
22 | } |
||
23 | } |
||
24 | |||
37 |