Revision #13 has been created by
rackycz on Oct 8, 2025, 1:36:21 PM with the memo:
edit
« previous (#12) next (#14) »
Changes
Title
unchanged
Yii3 - How to start
Category
unchanged
Tutorials
Yii version
unchanged
3.0
Tags
unchanged
Content
changed
[...]
```php
$b->dropTable('user');
```
## Running the migrations
Try to run "make yii migrate:up" and you will see error "could not find driver", because file "docker/Dockerfile" does not install the "pdo_mysql" extention. Add it to the place where "install-php-extensions" is called.
Then call:
- make down
- make build
- make up[...]