this article last updated: March 1, 2010 Due to inevitable changes that will be made to the shopping cart software over time, the cart's variable and database structure may change from time to time without advanced notice. We will attempt to keep the information in this article up-to-date, but Modular Merchant makes no guarantee as to the accuracy of the information provided in this article. Use this information at your own risk.
This article outlines the database structure for the MMv4 dropship database table.
- id
Primary Key of the table.
int(10) | unsigned | auto increment | primary key | indexed
- active
If this field contains a value greater than zero, then the dropship is inactive.
int(10) | Values: 0/timestamp | Default: 1 | indexed
- company
The company/nickname for the dropshipper.
varchar(255) | indexed
- first_name
The first name associated with the dropshipper.
varchar(255) | indexed
- last_name
The last name associated with the dropship.
varchar(255) | indexed
- address_1
The first line of the billing address associated with the dropshipper.
varchar(255) | indexed
- address_2
The second line of the billing address associated with the dropshipper.
varchar(255) | indexed
- city
The city associated with the dropship address.
varchar(255) | indexed
- state
The two-character ISO code of the state associated with the dropship address, followed by the two-character ISO code of the country. For example, Oregon would be recorded as: OR_US.
varchar(255) | indexed
- zip
The zip/postal code associated with the dropship address.
varchar(255) | indexed
- country
The two-character ISO code of the country associated with the dropship address.
varchar(255) | indexed
- phone_ac
The area code associated with the dropship phone number.
varchar(255) | indexed
- phone
The phone number associated with the dropship.
varchar(255) | indexed
- report_only_if_to_ship
Whether or not non-shippable items are sent via the fulfillment report email. True will only sent items that are to be shipped via the fulfillment report email.
int(10) | indexed | default: 1
- report_update_prods_as_shipped
Whether or not the order item will be updated as shipped. True will automatically update all order items sent via the fulfillment report email as shipped.
int(10) | indexed | default: 1
|