2 package Koha
::Schema
::Result
::Aqbasketgroup
;
4 # Created by DBIx::Class::Schema::Loader
5 # DO NOT MODIFY THE FIRST PART OF THIS FILE
9 Koha::Schema::Result::Aqbasketgroup
16 use base
'DBIx::Class::Core';
18 =head1 TABLE: C<aqbasketgroups>
22 __PACKAGE__
->table("aqbasketgroups");
55 =head2 freedeliveryplace
60 =head2 deliverycomment
74 __PACKAGE__
->add_columns(
76 { data_type
=> "integer", is_auto_increment
=> 1, is_nullable
=> 0 },
78 { data_type
=> "varchar", is_nullable
=> 1, size
=> 50 },
80 { data_type
=> "tinyint", is_nullable
=> 1 },
82 { data_type
=> "integer", is_foreign_key
=> 1, is_nullable
=> 0 },
84 { data_type
=> "varchar", is_nullable
=> 1, size
=> 10 },
86 { data_type
=> "text", is_nullable
=> 1 },
88 { data_type
=> "varchar", is_nullable
=> 1, size
=> 255 },
90 { data_type
=> "varchar", is_nullable
=> 1, size
=> 10 },
103 __PACKAGE__
->set_primary_key("id");
111 Related object: L<Koha::Schema::Result::Aqbasket>
115 __PACKAGE__
->has_many(
117 "Koha::Schema::Result::Aqbasket",
118 { "foreign.basketgroupid" => "self.id" },
119 { cascade_copy
=> 0, cascade_delete
=> 0 },
126 Related object: L<Koha::Schema::Result::Aqbookseller>
130 __PACKAGE__
->belongs_to(
132 "Koha::Schema::Result::Aqbookseller",
133 { id
=> "booksellerid" },
134 { is_deferrable
=> 1, on_delete
=> "CASCADE", on_update
=> "CASCADE" },
138 # Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
139 # DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:tT40YZgK7gOfNG3DVFTHiA
142 # You can replace this text with custom content, and it will be preserved on regeneration