diff options
author | Russ Allbery <rra@stanford.edu> | 2008-02-09 01:57:42 +0000 |
---|---|---|
committer | Russ Allbery <rra@stanford.edu> | 2008-02-09 01:57:42 +0000 |
commit | b415b347328e7db0f41f0294c06060c6dd156b3d (patch) | |
tree | 8ebf0c6fee7e5ef8ae338bc7075b72fdfddf420a /perl/Wallet/Schema.pm | |
parent | ca4ca4db50041938cfca4de4a7c0d454c014fcec (diff) |
Add file object support to the wallet server.
Diffstat (limited to 'perl/Wallet/Schema.pm')
-rw-r--r-- | perl/Wallet/Schema.pm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/perl/Wallet/Schema.pm b/perl/Wallet/Schema.pm index 2f62da7..5fb6618 100644 --- a/perl/Wallet/Schema.pm +++ b/perl/Wallet/Schema.pm @@ -2,7 +2,7 @@ # $Id$ # # Written by Russ Allbery <rra@stanford.edu> -# Copyright 2007 Board of Trustees, Leland Stanford Jr. University +# Copyright 2007, 2008 Board of Trustees, Leland Stanford Jr. University # # See LICENSE for licensing terms. @@ -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.03'; +$VERSION = '0.04'; ############################################################################## # Data manipulation @@ -261,6 +261,8 @@ Holds the supported object types and their corresponding Perl classes: (ty_name varchar(16) primary key, ty_class varchar(64)); insert into types (ty_name, ty_class) + values ('file', 'Wallet::Object::File'); + insert into types (ty_name, ty_class) values ('keytab', 'Wallet::Object::Keytab'); Holds the supported ACL schemes and their corresponding Perl classes: |