CTOlet / yii2-attachments

Yii2 extension for uploading and attaching the files to the models
66 stars 57 forks source link

Compatibility with 'migrationNamespaces' #50

Closed rapita closed 7 years ago

rapita commented 7 years ago

This feature appears in yii2 version 2.0.10.

CTOlet commented 7 years ago

Ok, thank you very much for PR. But could you please explain how this feauture can be used? I dont understand you.

rapita commented 7 years ago

The feature allows you to automatically tracking migrations with namespace. It is much easier to automatically deploy project in production server.

For usage need add to console config file this code:

    'controllerMap' => [
        ...
        'migrate' => [
            'class' => 'yii\console\controllers\MigrateController',
            'migrationNamespaces' => [
                'nemmo\attachments\migrations',
            ],
        ],
        ...
    ],
CTOlet commented 7 years ago

Simple and perfect! (:

rapita commented 7 years ago

Thank you :)