mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-12-21 02:08:29 +00:00
Merge pull request #81 from NeilHanlon/scoped-packages-modules
Fix regresions introduced by #78
This commit is contained in:
commit
a200005b64
@ -367,6 +367,8 @@ func (a *Access) SetGroupInstallOptionsForPackage(projectId string, packageName
|
|||||||
projectId,
|
projectId,
|
||||||
packageName,
|
packageName,
|
||||||
dependsOn,
|
dependsOn,
|
||||||
|
enableModule,
|
||||||
|
disableModule,
|
||||||
)
|
)
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,2 @@
|
|||||||
ALTER TABLE
|
ALTER TABLE IF EXISTS extra_package_options DROP COLUMN IF EXISTS enable_module,
|
||||||
IF EXISTS extra_package_options DROP COLUMN IF EXISTS enable_module,
|
DROP COLUMN IF EXISTS disable_module;
|
||||||
IF EXISTS extra_package_options DROP COLUMN IF EXISTS disable_module;
|
|
||||||
|
@ -1,5 +1,2 @@
|
|||||||
ALTER TABLE
|
ALTER TABLE IF EXISTS extra_package_options ADD COLUMN IF NOT EXISTS enable_module text [] NOT NULL DEFAULT ARRAY []::text [],
|
||||||
IF EXISTS extra_package_options
|
ADD COLUMN IF NOT EXISTS disable_module text [] NOT NULL DEFAULT ARRAY []::text [];
|
||||||
ADD
|
|
||||||
COLUMN IF NOT EXISTS enable_module text [] not null default array [] :: text [],
|
|
||||||
COLUMN IF NOT EXISTS disable_module text [] not null default array [] :: text [];
|
|
||||||
|
Loading…
Reference in New Issue
Block a user