|
@@ -42,6 +42,7 @@ class Stations extends Migrator
|
|
|
->addColumn('longitude', 'decimal', ['precision' => 10,'scale' => 0,'null' => true,'signed' => true,'comment' => '经度',])
|
|
|
->addColumn('latitude', 'decimal', ['precision' => 10,'scale' => 0,'null' => true,'signed' => true,'comment' => '纬度',])
|
|
|
->addColumn('online_time', 'datetime', ['null' => true,'signed' => true,'comment' => '在线时间',])
|
|
|
+ ->addColumn('online_state', 'string', ['limit' => 8,'null' => true,'signed' => true,'comment' => '设置是否在线',])
|
|
|
->addColumn('address', 'string', ['limit' => 200,'null' => true,'signed' => true,'comment' => '安装地址',])
|
|
|
->addColumn('remark', 'text', ['limit' => MysqlAdapter::TEXT_REGULAR,'null' => true,'signed' => true,'comment' => '备注',])
|
|
|
->addColumn('open_time', 'datetime', ['null' => true,'signed' => true,'comment' => '开局时间',])
|