aboutsummaryrefslogtreecommitdiff
path: root/perl/Wallet/Schema.pm
diff options
context:
space:
mode:
authorRuss Allbery <rra@stanford.edu>2007-10-09 23:52:15 +0000
committerRuss Allbery <rra@stanford.edu>2007-10-09 23:52:15 +0000
commitd12a9ff9bcc5f5172dcf1ecfd13bc692ef614df0 (patch)
treeb02d8b6e2c239345dbed64ece73a654e186a21ab /perl/Wallet/Schema.pm
parentc3351b98c09c00c1b45ffd0219f333c2d9df08b9 (diff)
Fix foreign key reference in the history table for the object name.
Diffstat (limited to 'perl/Wallet/Schema.pm')
-rw-r--r--perl/Wallet/Schema.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl/Wallet/Schema.pm b/perl/Wallet/Schema.pm
index 46a5ef7..ec690e1 100644
--- a/perl/Wallet/Schema.pm
+++ b/perl/Wallet/Schema.pm
@@ -21,7 +21,7 @@ use DBI;
# This version should be increased on any code change to this module. Always
# use two digits for the minor version with a leading zero if necessary so
# that it will sort properly.
-$VERSION = '0.01';
+$VERSION = '0.02';
##############################################################################
# Implementation
@@ -289,7 +289,7 @@ this table:
oh_type varchar(16)
not null references objects(ob_type),
oh_name varchar(255)
- not null references objects(ob_object),
+ not null references objects(ob_name),
oh_action varchar(16) not null,
oh_field varchar(16) default null,
oh_type_field varchar(255) default null,