App-GnuCash-MembershipUtils
view release on metacpan or search on metacpan
lib/GnuCash/Schema/Result/Price.pm view on Meta::CPAN
use utf8;
package GnuCash::Schema::Result::Price;
# Created by DBIx::Class::Schema::Loader
# DO NOT MODIFY THE FIRST PART OF THIS FILE
=head1 NAME
GnuCash::Schema::Result::Price
=cut
use strict;
use warnings;
use base 'DBIx::Class::Core';
=head1 COMPONENTS LOADED
=over 4
=item * L<DBIx::Class::InflateColumn::DateTime>
=back
=cut
__PACKAGE__->load_components("InflateColumn::DateTime");
=head1 TABLE: C<prices>
=cut
__PACKAGE__->table("prices");
=head1 ACCESSORS
=head2 guid
data_type: 'text'
is_nullable: 0
size: 32
=head2 commodity_guid
data_type: 'text'
is_nullable: 0
size: 32
=head2 currency_guid
data_type: 'text'
is_nullable: 0
size: 32
=head2 date
data_type: 'text'
is_nullable: 0
size: 19
=head2 source
data_type: 'text'
is_nullable: 1
size: 2048
=head2 type
data_type: 'text'
is_nullable: 1
size: 2048
=head2 value_num
data_type: 'bigint'
is_nullable: 0
=head2 value_denom
data_type: 'bigint'
is_nullable: 0
=cut
__PACKAGE__->add_columns(
"guid",
{ data_type => "text", is_nullable => 0, size => 32 },
( run in 0.952 second using v1.01-cache-2.11-cpan-8f98c5d2c55 )