Skip to content

Commit

Permalink
dev-cit-2.2-tpm2-eventlogs: Add SQL migrations to for host specific m…
Browse files Browse the repository at this point in the history
…anifests
  • Loading branch information
David Zech committed Aug 10, 2016
1 parent 448345c commit 29e13ba
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
* Author: dczech
* Created: Aug 9, 2016
*/


ALTER TABLE `mw_host_specific_manifest` ADD COLUMN `pcr_bank` varchar(20);

INSERT INTO `mw_changelog` (`ID, APPLIED_AT`, `DESCRIPTION`) VALUES (20160809164000, NOW(), 'Add pcr_bank to mw_host_specific_manifest');
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
* Author: dczech
* Created: Aug 9, 2016
*/


ALTER TABLE mw_host_specific_manifest ADD COLUMN pcr_bank varchar(20);

INSERT INTO mw_changelog (ID, APPLIED_AT, DESCRIPTION) VALUES (20160809164000, NOW(), 'Add pcr_bank to mw_host_specific_manifest');

0 comments on commit 29e13ba

Please sign in to comment.