| Conditions | 1 |
| Paths | 1 |
| Total Lines | 4 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | public function postUp(Schema $schema): void { |
||
| 21 | $this->connection->executeQuery("UPDATE user_type SET icon = 'fas fa-user-tie' WHERE alias = 'parent'"); |
||
| 22 | $this->connection->executeQuery("UPDATE user_type SET icon = 'fas fa-chalkboard-teacher' WHERE alias = 'teacher'"); |
||
| 23 | $this->connection->executeQuery("UPDATE user_type SET icon = 'fas fa-user-graduate' WHERE alias = 'student'"); |
||
| 24 | } |
||
| 38 |