| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | public function up() |
||
| 15 | { |
||
| 16 | Schema::create( |
||
| 17 | 'oauth_refresh_tokens', function (Blueprint $table) { |
||
| 18 | $table->string('id', 100)->primary(); |
||
| 19 | $table->string('access_token_id', 100)->index(); |
||
| 20 | $table->boolean('revoked'); |
||
| 21 | $table->dateTime('expires_at')->nullable(); |
||
| 22 | } |
||
| 23 | ); |
||
| 24 | } |
||
| 25 | |||
| 36 |