Yii v2 snippet guide

Comparing #12 with #13

Revision #13 was created by rackycz rackycz on Sep 19, 2019, 8:55:39 PM.

db

Content

[...]
---
... text ...

User management + basic SQL commands
---
To create DB with users, use following command. I recommend charset **utf8_unicode_ci**
 (or utf8mb4_unicode_ci) as it allows you to use [more international characters](https://stackoverflow.com/questions/766809/whats-the-difference-between-utf8-general-ci-and-utf8-unicode-ci).

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