table('extension_wechat_user', ['engine' => 'InnoDB', 'comment' => '微信用户表']); $table ->addColumn('user_id', 'integer', ['signed' => false, 'comment' => '用户ID']) ->addColumn('openid', 'string', ['comment' => '微信openid']) ->addColumn('appid', 'string', ['comment' => '微信appid']) ->addColumn('nickname', 'string', ['comment' => '昵称']) ->addColumn('avatar', 'string', ['comment' => '头像']) ->addTimestamps('create_time', 'update_time') ->addColumn('delete_time', 'timestamp', ['null' => true, 'comment' => '删除时间']) ->create(); } }