Yii3 - How to start

Comparing #12 with #13

Revision #13 was created by rackycz rackycz on Oct 8, 2025, 1:36:21 PM.

edit

Content

[...]
```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
[...]