# 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;

```
