2016-07-15 36 views

回答

2

我沒有用於創建幾何形狀,但是你也可以使用一個哈希格式創建列

use yii\db\Schema; 
use yii\db\Migration; 




    $this->createTable('Your_table ', [ 
     'id' => 'pk', 
     'user_id' => 'integer not null',    
     'land_scope_code' => 'string(4)',  
     'init_lat' => 'decimal(24,20)', 
     'init_lng' => 'decimal(24,20)', 
     'init_zoom' => 'integer', 

    ]); 

可這是你的

$this->createTable('{{%gps}}', [ 
     ... 

     'gps' => 'geometry not null';  

     ... 
]); 
有用