# Installation

## Database

{% hint style="info" %}
Before you install this database code, you can active the option \`Config.AutoDatabaseSetup\` to run this for you.
{% endhint %}

```sql
CREATE TABLE `m_multicharacter` (
	`charid` VARCHAR(60) NOT NULL,
	`slots` INT(11) NOT NULL,
	PRIMARY KEY (`charid`) USING BTREE,
	INDEX `slots` (`slots`) USING BTREE
) ENGINE=InnoDB;
```
