Revision #10 has been created by rackycz on Sep 19, 2019, 8:52:52 PM with the memo:
db
« previous (#9) next (#11) »
Changes
Title
unchanged
Yii v2 for beginners
Category
unchanged
Tutorials
Yii version
unchanged
2.0
Tags
unchanged
tutorial,beginner,yii2
Content
changed
[...]
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;
```[...]