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