table('uc_province', ['engine' => 'InnoDB', 'comment' => '省份表' ,'id' => 'id','signed' => true ,'primary_key' => ['id']]); $table->addColumn('name', 'string', ['limit' => 50,'null' => true,'signed' => true,'comment' => '名称',]) ->addColumn('is_use', 'boolean', ['null' => true,'signed' => true,'comment' => '是否启用',]) ->create(); } }