logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Wallet::Schema::Result::Type - Wallet schema for object types

Accessors

ty_name
         data_type: 'varchar'
         is_nullable: 0
         size: 16

   ty_class
         data_type: 'varchar'
         is_nullable: 1
         size: 64

perl v5.40.0                                       2024-11-12                  Wallet::Schema::Result::Type(3pm)

Description

       This is a normalization table used to constrain the values in other tables.  It contains the types of
       wallet objects that are considered valid, and the modules that govern each.

       By default it contains the following entries:

         insert into types (ty_name, ty_class)
             values ('file', 'Wallet::Object::File');
         insert into types (ty_name, ty_class)
             values ('keytab', 'Wallet::Object::Keytab');

       If you have extended the wallet to support additional object types , you will want to add additional rows
       to this table mapping those types to Perl classes that implement the object APIs.

Name

       Wallet::Schema::Result::Type - Wallet schema for object types

See Also