table('admin_auth_group_access', [ 'comment' => '用户和组的对应关系' ])->setCollation('utf8mb4_general_ci'); $table->addColumn('uid', 'integer', [ 'limit' => 11, 'default' => 0, 'signed' => false, 'comment' => '' ])->addColumn('group_id', 'string', [ 'limit' => 255, 'default' => '', 'comment' => '' ])->addIndex(['uid'])->addIndex(['group_id'])->create(); } }