Skip to content

Commit

Permalink
Change 'cpe' column definition to be NOT NULL
Browse files Browse the repository at this point in the history
  • Loading branch information
HoussemNasri committed Jan 17, 2024
1 parent 47dac69 commit 2fe3894
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion schema/spacewalk/common/tables/suseOVALPlatform.sql
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ CREATE TABLE suseOVALPlatform
(
id NUMERIC NOT NULL
CONSTRAINT suse_oval_platform_id_pk PRIMARY KEY,
cpe VARCHAR
cpe VARCHAR NOT NULL
);


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ CREATE TABLE IF NOT EXISTS suseOVALPlatform
(
id NUMERIC NOT NULL
CONSTRAINT suse_oval_platform_id_pk PRIMARY KEY,
cpe VARCHAR
cpe VARCHAR NOT NULL
);

CREATE SEQUENCE IF NOT EXISTS suse_oval_platform_id_seq;
Expand Down

0 comments on commit 2fe3894

Please sign in to comment.