Difference between #12 and #13 of
Yii v2 snippet guide

Revision #13 has been created by rackycz on Sep 19, 2019, 8:55:39 PM with the memo:

db
« previous (#12) next (#14) »

Changes

Title unchanged

Yii v2 for beginners

Category unchanged

Tutorials

Yii version unchanged

2.0

Tags unchanged

tutorial,beginner,yii2

Content changed

[...]
---
... 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;
```
[...]
7 0
4 followers
Viewed: 254 732 times
Version: 2.0
Category: Tutorials
Written by: rackycz
Last updated by: rackycz
Created on: Sep 19, 2019
Last updated: 5 months ago
Update Article

Revisions

View all history