| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | public function columns(): array |
||
| 19 | { |
||
| 20 | return [ |
||
| 21 | 'access_token' => $this->primaryKey(40), |
||
| 22 | 'client_id' => $this->string(32)->notNull(), |
||
| 23 | 'user_id' => $this->integer()->defaultValue(null), |
||
| 24 | 'expires' => $this->datetime()->notNull(), |
||
| 25 | 'scope' => $this->string(2000)->notNull()->defaultValue(null), |
||
| 26 | ]; |
||
| 42 |