summaryrefslogtreecommitdiff
path: root/perl/sql/Wallet-Schema-0.08-0.09-SQLite.sql
diff options
context:
space:
mode:
Diffstat (limited to 'perl/sql/Wallet-Schema-0.08-0.09-SQLite.sql')
-rw-r--r--perl/sql/Wallet-Schema-0.08-0.09-SQLite.sql4
1 files changed, 4 insertions, 0 deletions
diff --git a/perl/sql/Wallet-Schema-0.08-0.09-SQLite.sql b/perl/sql/Wallet-Schema-0.08-0.09-SQLite.sql
index 42f4ea5..df0fa09 100644
--- a/perl/sql/Wallet-Schema-0.08-0.09-SQLite.sql
+++ b/perl/sql/Wallet-Schema-0.08-0.09-SQLite.sql
@@ -8,6 +8,10 @@ CREATE TABLE duo (
PRIMARY KEY (du_name)
);
+ALTER TABLE acl_history ADD ah_name varchar(255) default null;
+
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;