> For the complete documentation index, see [llms.txt](https://docs.pescripts.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.pescripts.com/scripts/phud/database.md).

# Database

Please add this table to your database.

```sql
CREATE TABLE IF NOT EXISTS `phud_settings` (
  `identifier` varchar(60) NOT NULL,
  `settings` longtext DEFAULT NULL,
  PRIMARY KEY (`identifier`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

```
