> 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/rageui-esx/agangs/installation/etape-3.md).

# Etape 3

Ajout du SQL

{% hint style="danger" %}
Veuillez ajouter le code SQL pour assurer le bon fonctionnement de la ressource.
{% endhint %}

Voici les tables SQL à ajouter dans votre base de données.

***

## Insert tables SQL

<details>

<summary>organisation_coffre.sql</summary>

```sql
CREATE TABLE `organisation_coffre` (
  `organisation` varchar(50) NOT NULL DEFAULT '' COMMENT 'Nom de la society',
  `inventory` text DEFAULT NULL COMMENT 'Inventaire de tout les items',
  `money` double DEFAULT NULL COMMENT 'Argent propre',
  `black_money` double DEFAULT NULL COMMENT 'Argent sale',
  `weapons` text DEFAULT NULL COMMENT 'Inventaire d''armes'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;

ALTER TABLE `organisation_coffre`
  ADD PRIMARY KEY (`organisation`);
```

</details>
