table('admin_app_group', [ 'comment' => '应用组,目前只做管理使用,没有实际权限控制' ])->setCollation('utf8mb4_general_ci'); $table->addColumn('name', 'string', [ 'limit' => 128, 'default' => '', 'comment' => '组名称' ])->addColumn('description', 'text', [ 'comment' => '组说明', 'null' => true ])->addColumn('status', 'integer', [ 'limit' => MysqlAdapter::INT_TINY, 'default' => 1, 'comment' => '组状态:0表示禁用,1表示启用' ])->addColumn('hash', 'string', [ 'limit' => 128, 'default' => '', 'comment' => '组标识' ])->create(); } }