table('admin_user_data', [ 'comment' => '管理员数据表' ])->setCollation('utf8mb4_general_ci'); $table->addColumn('login_times', 'integer', [ 'limit' => 11, 'default' => 0, 'comment' => '账号登录次数' ])->addColumn('last_login_ip', 'integer', [ 'limit' => MysqlAdapter::INT_BIG, 'default' => 0, 'comment' => '最后登录IP' ])->addColumn('last_login_time', 'integer', [ 'limit' => 11, 'default' => 0, 'comment' => '最后登录时间' ])->addColumn('uid', 'integer', [ 'limit' => 11, 'default' => 0, 'comment' => '用户ID' ])->addColumn('head_img', 'text', [ 'null' => true, 'comment' => '用户头像' ])->addIndex(['uid'])->create(); } }