> For the complete documentation index, see [llms.txt](https://ahero-fivem-shop.gitbook.io/ahero.fivem-shop-gtav/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ahero-fivem-shop.gitbook.io/ahero.fivem-shop-gtav/ui/areport-ui/installation/etape-2.md).

# Etape 2

## Ajout du SQL

```sql
DROP TABLE IF EXISTS `ahero_classement_staff`;
CREATE TABLE IF NOT EXISTS `ahero_classement_staff` (
  `license` varchar(60) COLLATE utf8mb4_general_ci NOT NULL,
  `nameStaff` varchar(50) COLLATE utf8mb4_general_ci NOT NULL,
  `labelGrade` varchar(255) COLLATE utf8mb4_general_ci NOT NULL,
  `score` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`license`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
```
