App-GnuCash-MembershipUtils

 view release on metacpan or  search on metacpan

lib/GnuCash/Schema/Result/Lot.pm  view on Meta::CPAN

use utf8;
package GnuCash::Schema::Result::Lot;

# Created by DBIx::Class::Schema::Loader
# DO NOT MODIFY THE FIRST PART OF THIS FILE

=head1 NAME

GnuCash::Schema::Result::Lot

=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<lots>

=cut

__PACKAGE__->table("lots");

=head1 ACCESSORS

=head2 guid

  data_type: 'text'
  is_nullable: 0
  size: 32

=head2 account_guid

  data_type: 'text'
  is_nullable: 1
  size: 32

=head2 is_closed

  data_type: 'integer'
  is_nullable: 0

=cut

__PACKAGE__->add_columns(
  "guid",
  { data_type => "text", is_nullable => 0, size => 32 },
  "account_guid",
  { data_type => "text", is_nullable => 1, size => 32 },
  "is_closed",
  { data_type => "integer", is_nullable => 0 },
);

=head1 PRIMARY KEY

=over 4

=item * L</guid>

=back

=cut

__PACKAGE__->set_primary_key("guid");


# Created by DBIx::Class::Schema::Loader v0.07052 @ 2024-02-18 13:56:36
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9MHBMcG+jlIz2FR7L1g+dw


# You can replace this text with custom code or comments, and it will be preserved on regeneration
1;



( run in 0.840 second using v1.01-cache-2.11-cpan-8f98c5d2c55 )