table('admin_user', [ 'comment' => '管理员认证信息' ])->setCollation('utf8mb4_general_ci'); $table->addColumn('username', 'string', [ 'limit' => 64, 'default' => '', 'comment' => '用户名' ])->addColumn('nickname', 'string', [ 'limit' => 64, 'default' => '', 'comment' => '用户昵称' ])->addColumn('password', 'char', [ 'limit' => 32, 'default' => '', 'comment' => '用户密码' ])->addColumn('create_time', 'integer', [ 'limit' => 11, 'default' => 0, 'comment' => '注册时间' ])->addColumn('create_ip', 'integer', [ 'limit' => MysqlAdapter::INT_BIG, 'default' => 0, 'comment' => '注册IP' ])->addColumn('update_time', 'integer', [ 'limit' => 11, 'default' => 0, 'comment' => '更新时间' ])->addColumn('status', 'integer', [ 'limit' => MysqlAdapter::INT_TINY, 'default' => 0, 'comment' => '账号状态 0封号 1正常' ])->addColumn('openid', 'string', [ 'limit' => 100, 'null' => true, 'default' => '', 'comment' => '三方登录唯一ID' ])->addIndex(['create_time'])->create(); } }