Yii-Users User Migration

I am sorry, but I will not give up, even after 3 nights. I do not understand the user migration.

I did install Yii 3 times from scratch. I can generate views and controllers in a mysql database.

I configured main.php and console.php as per the readme.md.

But when I run the command ./yiic migrate --migrationPath=user.migrations in the map protected nothing is happening. No message, Nothing.

I am doing something wrong. But what? Who can help me?

My console.php in protected/config is:

<?php

// This is the configuration for yiic console application.

// Any writable CConsoleApplication properties can be configured here.

return array(

'basePath'=&gt;dirname(__FILE__).DIRECTORY_SEPARATOR.'..',


'name'=&gt;'My console application',





// preloading 'log' component


'preload'=&gt;array('log'),





    'modules'=&gt;array(


        'user'=&gt;array(a


            # encrypting method (php hash function)


            'hash' =&gt; 'md5',





            # send activation email


            'sendActivationMail' =&gt; true,





            # allow access for non-activated users


            'loginNotActiv' =&gt; false,





            # activate user on registration (only sendActivationMail = false)


            'activeAfterRegister' =&gt; false,





            # automatically login from registration


            'autoLogin' =&gt; true,





            # registration path


            'registrationUrl' =&gt; array('/user/registration'),





            # recovery password path


            'recoveryUrl' =&gt; array('/user/recovery'),





            # login form path


            'loginUrl' =&gt; array('/user/login'),





            # page after login


            'returnUrl' =&gt; array('/user/profile'),





            # page after logout


            'returnLogoutUrl' =&gt; array('/user/login'),


        ),





// application components


'components'=&gt;array(





	// uncomment the following to use a MySQL database


	'db'=&gt;array(


		'connectionString' =&gt; 'mysql:host=localhost;dbname=database',


		'emulatePrepare' =&gt; true,


		'username' =&gt; 'user',


		'password' =&gt; 'password',


		'charset' =&gt; 'utf8',


  'tablePrefix' =&gt; 'tbl_',


	),


	'log'=&gt;array(


		'class'=&gt;'CLogRouter',


		'routes'=&gt;array(


			array(


				'class'=&gt;'CFileLogRoute',


				'levels'=&gt;'error, warning',


			),


		),


	),


),

);

[color="#006400"]/* moved from Installation and Setup forum */[/color]