How to work with decimal

Hello

I need to add columns with latitude (


decimal (10,<img src='http://www.yiiframework.com/forum/public/style_emoticons/default/cool.gif' class='bbc_emoticon' alt='8)' />

) and longtitude (


decimal (11,<img src='http://www.yiiframework.com/forum/public/style_emoticons/default/cool.gif' class='bbc_emoticon' alt='8)' />

with Schema

how can i add


(10,<img src='http://www.yiiframework.com/forum/public/style_emoticons/default/cool.gif' class='bbc_emoticon' alt='8)' />

or


(11,<img src='http://www.yiiframework.com/forum/public/style_emoticons/default/cool.gif' class='bbc_emoticon' alt='8)' />

in migration?


   $this->addColumn('{{%build}}', 'lat', [Schema::TYPE_DECIMAL => 'decimal(10, <img src='http://www.yiiframework.com/forum/public/style_emoticons/default/cool.gif' class='bbc_emoticon' alt='8)' />']);

         $this->addColumn('{{%build}}', 'lng', [Schema::TYPE_DECIMAL => 'decimal(11, <img src='http://www.yiiframework.com/forum/public/style_emoticons/default/cool.gif' class='bbc_emoticon' alt='8)' />']);

not working

Updated

&#036;this-&gt;addColumn('{{%clinics}}', 'lat', Schema::TYPE_DECIMAL.'(10, <img src='http://www.yiiframework.com/forum/public/style_emoticons/default/cool.gif' class='bbc_emoticon' alt='8)' />');


     &#036;this-&gt;addColumn('{{%clinics}}', 'lng', Schema::TYPE_DECIMAL.'(11, <img src='http://www.yiiframework.com/forum/public/style_emoticons/default/cool.gif' class='bbc_emoticon' alt='8)' />');

))