this article last updated: November 3, 2009 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 digdel_order_item database table.
- id
Primary Key of the table.
int(10) | unsigned | auto increment | primary key | indexed
- order_id
SID of the order associated with this digital order item.
int(10) | unsigned | indexed
- object_id
SID of the digital object associated with this digital order item.
int(10) | unsigned | indexed
- access_attempts
Amount of download attempts made to download the digital object by the customer.
int(10) | unsigned | indexed
- access_limit
Maximum amount of download attempts allowed for this digital object
int(10) | unsigned | indexed
- expire_date
The date in which the digital object will expire and no longer allow the customer to download it.
int(10) | unsigned | indexed
- expire_extension
Amount, in seconds, of extra time given to the expireation of the digital object.
int(10) | unsigned | indexed
- unlimited_access
This specifies that the digital object will never expire.
int(10) | indexed
- release_date
Date associated with a "Pre-order" type digital object This date is when the digital object will become available.
int(10) | indexed
|