Yii v2 snippet guide

Comparing #8 with #9

Revision #9 was created by rackycz rackycz on Sep 19, 2019, 8:52:36 PM.

db

Content

[...]
Translations (i18n) + changing languages
---
... text ...

User management + basic SQL commands
---

 
To create DB with users, use following command. I recommend char set **utf8_unicode_ci** as it allowes you to use more international characters.

```MySQL
CREATE DATABASE IF NOT EXISTS `yii-demo-db` DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
```
[...]