summaryrefslogtreecommitdiff
path: root/perl/sql/Wallet-Schema-0.09-0.10-MySQL.sql
diff options
context:
space:
mode:
authorJon Robertson <jonrober@stanford.edu>2014-10-09 22:24:18 -0700
committerJon Robertson <jonrober@stanford.edu>2014-10-09 22:24:18 -0700
commit58186415a0f232cf84ced650ecc1326df66f9c6d (patch)
tree5b34314712a2dd22497dbeab8692a1f3edc03762 /perl/sql/Wallet-Schema-0.09-0.10-MySQL.sql
parent94cfb1c7969515a863d7b0e09f00b6ced5f4fc5c (diff)
Added new column in the Duo table
New column is required to differentiate the Duo table entries now that we have more than one Duo object type. Added the new field and rebuilt schema definitions and upgrade files. Change-Id: Icf538eaded93f4f2820984c087d4850a586a7db1
Diffstat (limited to 'perl/sql/Wallet-Schema-0.09-0.10-MySQL.sql')
-rw-r--r--perl/sql/Wallet-Schema-0.09-0.10-MySQL.sql14
1 files changed, 14 insertions, 0 deletions
diff --git a/perl/sql/Wallet-Schema-0.09-0.10-MySQL.sql b/perl/sql/Wallet-Schema-0.09-0.10-MySQL.sql
new file mode 100644
index 0000000..3c54c6d
--- /dev/null
+++ b/perl/sql/Wallet-Schema-0.09-0.10-MySQL.sql
@@ -0,0 +1,14 @@
+-- Convert schema 'sql/Wallet-Schema-0.09-MySQL.sql' to 'Wallet::Schema v0.10':;
+
+BEGIN;
+
+ALTER TABLE duo DROP PRIMARY KEY,
+ ADD COLUMN du_type varchar(16) NOT NULL,
+ ADD INDEX duo_idx_du_type_du_name (du_type, du_name),
+ ADD PRIMARY KEY (du_name, du_type),
+ ADD CONSTRAINT duo_fk_du_type_du_name FOREIGN KEY (du_type, du_name) REFERENCES objects (ob_type, ob_name),
+ ENGINE=InnoDB;
+
+
+COMMIT;
+