From 5cf414ca22df58c85028d43cfa4debb5a907b7af Mon Sep 17 00:00:00 2001 From: Andreas Granig Date: Tue, 14 Aug 2018 15:02:15 +0200 Subject: [PATCH] TT#42767 Add tag column to firmware table Allows to identify firmwares by a given tag, if the firmware consists of multiple files and the phone fetches them by hardcoded names. Change-Id: I5325895da642d306c92ab1e03264ba128cc295a6 --- db_scripts/diff/15422.down | 3 +++ db_scripts/diff/15422.up | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 db_scripts/diff/15422.down create mode 100644 db_scripts/diff/15422.up diff --git a/db_scripts/diff/15422.down b/db_scripts/diff/15422.down new file mode 100644 index 00000000..183ba812 --- /dev/null +++ b/db_scripts/diff/15422.down @@ -0,0 +1,3 @@ +USE provisioning; + +ALTER TABLE autoprov_firmwares DROP COLUMN tag; diff --git a/db_scripts/diff/15422.up b/db_scripts/diff/15422.up new file mode 100644 index 00000000..461ca708 --- /dev/null +++ b/db_scripts/diff/15422.up @@ -0,0 +1,3 @@ +USE provisioning; + +ALTER TABLE autoprov_firmwares ADD COLUMN tag VARCHAR(255) DEFAULT NULL;