Lines 153-158
__PACKAGE__->table("vendor_edi_accounts");
Link Here
|
153 |
is_nullable: 0 |
153 |
is_nullable: 0 |
154 |
size: 256 |
154 |
size: 256 |
155 |
|
155 |
|
|
|
156 |
=head2 basket_name_source |
157 |
|
158 |
data_type: 'enum' |
159 |
default_value: 'filename' |
160 |
extra: {list => ["filename","purchase_order_number"]} |
161 |
is_nullable: 1 |
162 |
|
156 |
=cut |
163 |
=cut |
157 |
|
164 |
|
158 |
__PACKAGE__->add_columns( |
165 |
__PACKAGE__->add_columns( |
Lines 200-205
__PACKAGE__->add_columns(
Link Here
|
200 |
{ data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, |
207 |
{ data_type => "integer", is_foreign_key => 1, is_nullable => 1 }, |
201 |
"plugin", |
208 |
"plugin", |
202 |
{ data_type => "varchar", default_value => "", is_nullable => 0, size => 256 }, |
209 |
{ data_type => "varchar", default_value => "", is_nullable => 0, size => 256 }, |
|
|
210 |
"basket_name_source", |
211 |
{ |
212 |
data_type => "enum", |
213 |
default_value => "filename", |
214 |
extra => { list => ["filename", "purchase_order_number"] }, |
215 |
is_nullable => 1, |
216 |
}, |
203 |
); |
217 |
); |
204 |
|
218 |
|
205 |
=head1 PRIMARY KEY |
219 |
=head1 PRIMARY KEY |
Lines 272-279
__PACKAGE__->belongs_to(
Link Here
|
272 |
); |
286 |
); |
273 |
|
287 |
|
274 |
|
288 |
|
275 |
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2024-04-19 16:25:44 |
289 |
# Created by DBIx::Class::Schema::Loader v0.07051 @ 2025-07-10 16:18:45 |
276 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:jenUF3Wx7J7F5270mLQMbw |
290 |
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:96OQ/Cdvc0aPt0YnVzXzJQ |
277 |
|
291 |
|
278 |
__PACKAGE__->add_columns( |
292 |
__PACKAGE__->add_columns( |
279 |
'+auto_orders' => { is_boolean => 1 }, |
293 |
'+auto_orders' => { is_boolean => 1 }, |
280 |
- |
|
|