You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
479 B
14 lines
479 B
CREATE TABLE IF NOT EXISTS osh.brewscans( |
|
id SERIAL, |
|
build_system_type VARCHAR(80), |
|
brew_id VARCHAR(100), |
|
brew_nvr VARCHAR(100), |
|
pnc_id VARCHAR(100), |
|
artifact_type VARCHAR(100), |
|
file_name VARCHAR(100), |
|
built_from_source BOOLEAN, |
|
PRIMARY KEY(id) |
|
); |
|
|
|
INSERT INTO osh.brewscans (id,build_system_type,brew_id,brew_nvr,pnc_id,artifact_type,file_name,built_from_source) |
|
VALUES(1,'brew','brew-id-1','brew-nvr-1','pnc-id-1','jar','my-file-1',true);
|
|
|