Lines 202-207
external id of the vendor
Link Here
|
202 |
|
202 |
|
203 |
the payment method for the vendor |
203 |
the payment method for the vendor |
204 |
|
204 |
|
|
|
205 |
=head2 language |
206 |
|
207 |
data_type: 'varchar' |
208 |
is_nullable: 1 |
209 |
size: 255 |
210 |
|
211 |
the language for the vendor |
212 |
|
205 |
=cut |
213 |
=cut |
206 |
|
214 |
|
207 |
__PACKAGE__->add_columns( |
215 |
__PACKAGE__->add_columns( |
Lines 253-258
__PACKAGE__->add_columns(
Link Here
|
253 |
{ data_type => "varchar", is_nullable => 1, size => 255 }, |
261 |
{ data_type => "varchar", is_nullable => 1, size => 255 }, |
254 |
"payment_method", |
262 |
"payment_method", |
255 |
{ data_type => "varchar", is_nullable => 1, size => 255 }, |
263 |
{ data_type => "varchar", is_nullable => 1, size => 255 }, |
|
|
264 |
"language", |
265 |
{ data_type => "varchar", is_nullable => 1, size => 255 }, |
256 |
); |
266 |
); |
257 |
|
267 |
|
258 |
=head1 PRIMARY KEY |
268 |
=head1 PRIMARY KEY |
259 |
- |
|
|