This repository has been archived on 2023-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
Foodloop-Server/lib/Pear/LocalLoop/Schema/Result/TransactionMeta.pm

47 lines
1 KiB
Perl
Raw Normal View History

2019-06-28 14:23:18 +00:00
package Pear::LocalLoop::Schema::Result::TransactionMeta;
use strict;
use warnings;
use base 'DBIx::Class::Core';
__PACKAGE__->table("transactions_meta");
__PACKAGE__->add_columns(
2019-07-02 14:21:01 +00:00
"id" => {
data_type => "integer",
2019-06-28 14:23:18 +00:00
is_auto_increment => 1,
2019-07-02 14:21:01 +00:00
is_nullable => 0,
2019-06-28 14:23:18 +00:00
},
2019-07-02 14:21:01 +00:00
"transaction_id" => {
data_type => "integer",
2019-06-28 14:23:18 +00:00
is_foreign_key => 1,
2019-07-02 14:21:01 +00:00
is_nullable => 0,
2019-06-28 14:23:18 +00:00
},
2019-07-02 14:21:01 +00:00
"net_value" => {
data_type => "numeric",
size => [ 100, 0 ],
2019-06-28 14:23:18 +00:00
is_nullable => 0,
},
"sales_tax_value" => {
2019-07-02 14:21:01 +00:00
data_type => "numeric",
size => [ 100, 0 ],
2019-06-28 14:23:18 +00:00
is_nullable => 0,
},
2019-07-02 14:21:01 +00:00
"gross_value" => {
data_type => "numeric",
size => [ 100, 0 ],
2019-06-28 14:23:18 +00:00
is_nullable => 0,
},
);
__PACKAGE__->set_primary_key("id");
__PACKAGE__->belongs_to(
"transaction",
"Pear::LocalLoop::Schema::Result::Transaction",
{ 'foreign.id' => 'self.transaction_id' },
);
1;