From b415b347328e7db0f41f0294c06060c6dd156b3d Mon Sep 17 00:00:00 2001 From: Russ Allbery Date: Sat, 9 Feb 2008 01:57:42 +0000 Subject: Add file object support to the wallet server. --- perl/Wallet/Schema.pm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'perl/Wallet/Schema.pm') 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 -# 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 @@ -260,6 +260,8 @@ Holds the supported object types and their corresponding Perl classes: create table types (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'); -- cgit v1.2.3