mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-18 19:31:25 +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,
|
||||
packageName,
|
||||
dependsOn,
|
||||
enableModule,
|
||||
disableModule,
|
||||
)
|
||||
return err
|
||||
}
|
||||
|
@ -1,3 +1,2 @@
|
||||
ALTER TABLE
|
||||
IF EXISTS extra_package_options DROP COLUMN IF EXISTS enable_module,
|
||||
IF EXISTS extra_package_options DROP COLUMN IF EXISTS disable_module;
|
||||
ALTER TABLE IF EXISTS extra_package_options DROP COLUMN IF EXISTS enable_module,
|
||||
DROP COLUMN IF EXISTS disable_module;
|
||||
|
@ -1,5 +1,2 @@
|
||||
ALTER TABLE
|
||||
IF EXISTS extra_package_options
|
||||
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 [];
|
||||
ALTER TABLE IF EXISTS extra_package_options ADD COLUMN IF NOT EXISTS enable_module text [] NOT NULL DEFAULT ARRAY []::text [],
|
||||
ADD COLUMN IF NOT EXISTS disable_module text [] NOT NULL DEFAULT ARRAY []::text [];
|
||||
|
Loading…
Reference in New Issue
Block a user