aboutsummaryrefslogtreecommitdiff
path: root/perl/sql/Wallet-Schema-0.08-0.09-PostgreSQL.sql
diff options
context:
space:
mode:
Diffstat (limited to 'perl/sql/Wallet-Schema-0.08-0.09-PostgreSQL.sql')
-rw-r--r--perl/sql/Wallet-Schema-0.08-0.09-PostgreSQL.sql19
1 files changed, 19 insertions, 0 deletions
diff --git a/perl/sql/Wallet-Schema-0.08-0.09-PostgreSQL.sql b/perl/sql/Wallet-Schema-0.08-0.09-PostgreSQL.sql
new file mode 100644
index 0000000..a1d3fa3
--- /dev/null
+++ b/perl/sql/Wallet-Schema-0.08-0.09-PostgreSQL.sql
@@ -0,0 +1,19 @@
+-- Convert schema 'sql/Wallet-Schema-0.08-PostgreSQL.sql' to 'sql/Wallet-Schema-0.09-PostgreSQL.sql':;
+
+BEGIN;
+
+CREATE TABLE "duo" (
+ "du_name" character varying(255) NOT NULL,
+ "du_key" character varying(255) NOT NULL,
+ PRIMARY KEY ("du_name")
+);
+
+ALTER TABLE acl_history ADD COLUMN ah_name character varying(255);
+
+CREATE INDEX acl_history_idx_ah_acl on acl_history (ah_acl);
+
+CREATE INDEX acl_history_idx_ah_name on acl_history (ah_name);
+
+
+COMMIT;
+