function uc_order_schema in Ubercart 6.2
Same name and namespace in other branches
- 8.4 uc_order/uc_order.install \uc_order_schema()
- 7.3 uc_order/uc_order.install \uc_order_schema()
Implements hook_schema().
File
- uc_order/
uc_order.install, line 11 - Install, update and uninstall functions for the uc_order module.
Code
function uc_order_schema() {
$schema = array();
$schema['uc_orders'] = array(
'description' => 'Stores Ubercart order information.',
'fields' => array(
'order_id' => array(
'description' => 'Primary key: the order ID.',
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
),
'uid' => array(
'description' => 'The {user}.uid of the customer that placed the order.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'order_status' => array(
'description' => 'The {uc_order_statuses}.order_status_id indicating the order status.',
'type' => 'varchar',
'length' => 32,
'not null' => TRUE,
'default' => '',
),
'order_total' => array(
'description' => 'The total amount to be paid for the order.',
'type' => 'numeric',
'precision' => 16,
'scale' => 5,
'not null' => TRUE,
'default' => 0.0,
),
'product_count' => array(
'description' => 'The total product quantity of the order.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'primary_email' => array(
'description' => 'The email address of the customer.',
'type' => 'varchar',
'length' => 96,
'not null' => TRUE,
'default' => '',
),
'delivery_first_name' => array(
'description' => 'The first name of the person receiving shipment.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'delivery_last_name' => array(
'description' => 'The last name of the person receiving shipment.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'delivery_phone' => array(
'description' => 'The phone number at the delivery location.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'delivery_company' => array(
'description' => 'The company at the delivery location.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'delivery_street1' => array(
'description' => 'The street address of the delivery location.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'delivery_street2' => array(
'description' => 'The second line of the street address.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'delivery_city' => array(
'description' => 'The city of the delivery location.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'delivery_zone' => array(
'description' => 'The state/zone/province id of the delivery location.',
'type' => 'int',
'size' => 'medium',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'delivery_postal_code' => array(
'description' => 'The postal code of the delivery location.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'delivery_country' => array(
'description' => 'The country ID of the delivery location.',
'type' => 'int',
'size' => 'medium',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'billing_first_name' => array(
'description' => 'The first name of the person paying for the order.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'billing_last_name' => array(
'description' => 'The last name of the person paying for the order.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'billing_phone' => array(
'description' => 'The phone number for the billing address.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'billing_company' => array(
'description' => 'The company of the billing address.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'billing_street1' => array(
'description' => 'The street address where the bill will be sent.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'billing_street2' => array(
'description' => 'The second line of the street address.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'billing_city' => array(
'description' => 'The city where the bill will be sent.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'billing_zone' => array(
'description' => 'The state/zone/province ID where the bill will be sent.',
'type' => 'int',
'size' => 'medium',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'billing_postal_code' => array(
'description' => 'The postal code where the bill will be sent.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'billing_country' => array(
'description' => 'The country ID where the bill will be sent.',
'type' => 'int',
'size' => 'medium',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'payment_method' => array(
'description' => 'The method of payment.',
'type' => 'varchar',
'length' => 32,
'not null' => TRUE,
'default' => '',
),
'data' => array(
'description' => 'A serialized array of extra data.',
'type' => 'text',
'serialize' => TRUE,
),
'created' => array(
'description' => 'The Unix timestamp indicating when the order was created.',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
'modified' => array(
'description' => 'The Unix timestamp indicating when the order was last modified.',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
'host' => array(
'description' => 'Host IP address of the person paying for the order.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'currency' => array(
'description' => 'The ISO currency code for the order.',
'type' => 'char',
'length' => 3,
'not null' => TRUE,
'default' => '',
),
),
'indexes' => array(
'uid' => array(
'uid',
),
'order_status' => array(
'order_status',
),
),
'primary key' => array(
'order_id',
),
);
$schema['uc_order_admin_comments'] = array(
'description' => 'Comments on orders that only administrators can see.',
'fields' => array(
'comment_id' => array(
'description' => 'Primary key: the comment ID.',
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
),
'order_id' => array(
'description' => 'The {uc_orders}.order_id of the order.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'uid' => array(
'description' => 'The {user}.uid of the author of the comment.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'message' => array(
'description' => 'The comment body.',
'type' => 'text',
),
'created' => array(
'description' => 'The Unix timestamp indicating when the comment was created.',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
),
'indexes' => array(
'order_id' => array(
'order_id',
),
),
'primary key' => array(
'comment_id',
),
);
$schema['uc_order_comments'] = array(
'description' => 'Comments on the order that the customer can see.',
'fields' => array(
'comment_id' => array(
'description' => 'Primary key: the comment ID.',
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
),
'order_id' => array(
'description' => 'The {uc_orders}.order_id of the order.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'uid' => array(
'description' => 'The {users}.uid of the user who made the comment.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'order_status' => array(
'description' => 'The status the order had when the comment was made, from {uc_order_statuses}.order_status_id.',
'type' => 'varchar',
'length' => 32,
'not null' => TRUE,
'default' => '',
),
'notified' => array(
'description' => 'A flag indicating whether the comment was emailed to the customer. 1 => Yes. 0 => No.',
'type' => 'int',
'size' => 'tiny',
'not null' => TRUE,
'default' => 0,
),
'message' => array(
'description' => 'The comment body.',
'type' => 'text',
),
'created' => array(
'description' => 'The Unix timestamp indicating when the comment was created.',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
),
'indexes' => array(
'order_id' => array(
'order_id',
),
),
'primary key' => array(
'comment_id',
),
);
$schema['uc_order_line_items'] = array(
'description' => 'Order line items other than products.',
'fields' => array(
'line_item_id' => array(
'description' => 'Primary key: the line item ID.',
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
),
'order_id' => array(
'description' => 'The {uc_orders}.order_id.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'type' => array(
'description' => 'The line item type.',
'type' => 'varchar',
'length' => 32,
'not null' => TRUE,
'default' => '',
),
'title' => array(
'description' => 'The label of the line item.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'amount' => array(
'description' => "The amount of the line item in the store's currency.",
'type' => 'numeric',
'precision' => 16,
'scale' => 5,
'not null' => TRUE,
'default' => 0.0,
),
'weight' => array(
'description' => 'The sort criteria of line items.',
'type' => 'int',
'size' => 'small',
'not null' => TRUE,
'default' => 0,
),
'data' => array(
'description' => 'A serialized array of extra data.',
'type' => 'text',
'serialize' => TRUE,
),
),
'indexes' => array(
'order_id' => array(
'order_id',
),
),
'primary key' => array(
'line_item_id',
),
);
$schema['uc_order_log'] = array(
'description' => 'Record of changes made to an order.',
'fields' => array(
'order_log_id' => array(
'description' => 'Primary key: the log entry ID.',
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
),
'order_id' => array(
'description' => 'The {uc_orders}.order_id.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'uid' => array(
'description' => 'The {users}.uid of the user who made the changes.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'changes' => array(
'description' => 'The description of what was changed.',
'type' => 'text',
),
'created' => array(
'description' => 'The Unix timestamp indicating when the change was made.',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
),
'indexes' => array(
'order_id' => array(
'order_id',
),
),
'primary key' => array(
'order_log_id',
),
);
$schema['uc_order_products'] = array(
'description' => 'The products that have been ordered.',
'fields' => array(
'order_product_id' => array(
'description' => 'Primary key: the ordered product ID.',
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
),
'order_id' => array(
'description' => 'The {uc_orders}.order_id.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'nid' => array(
'description' => 'The {node}.nid of the product.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'title' => array(
'description' => 'The product title, from {node}.title.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'manufacturer' => array(
'description' => 'The product manufacturer. (Deprecated)',
'type' => 'varchar',
'length' => 32,
'not null' => TRUE,
'default' => '',
),
'model' => array(
'description' => 'The product model/SKU, from {uc_products}.model.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'qty' => array(
'description' => 'The number of the same product ordered.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'cost' => array(
'description' => 'The cost to the store for the product.',
'type' => 'numeric',
'precision' => 16,
'scale' => 5,
'not null' => TRUE,
'default' => 0.0,
),
'price' => array(
'description' => 'The price paid for the ordered product.',
'type' => 'numeric',
'precision' => 16,
'scale' => 5,
'not null' => TRUE,
'default' => 0.0,
),
'weight' => array(
'description' => 'The physical weight.',
'type' => 'float',
'not null' => TRUE,
'default' => 0.0,
),
'data' => array(
'description' => 'A serialized array of extra data.',
'type' => 'text',
'serialize' => TRUE,
),
),
'indexes' => array(
'order_id' => array(
'order_id',
),
'qty' => array(
'qty',
),
'nid' => array(
'nid',
),
),
'primary key' => array(
'order_product_id',
),
);
$schema['uc_order_statuses'] = array(
'description' => 'Statuses the order can have during its lifecycle.',
'fields' => array(
'order_status_id' => array(
'description' => 'Primary key: the order status ID.',
'type' => 'varchar',
'length' => 32,
'not null' => TRUE,
'default' => '',
),
'title' => array(
'description' => 'The status title.',
'type' => 'varchar',
'length' => 48,
'not null' => TRUE,
'default' => '',
),
'state' => array(
'description' => 'The base order state with which the status is associated.',
'type' => 'varchar',
'length' => 32,
'not null' => TRUE,
'default' => '',
),
'weight' => array(
'description' => 'The sort criteria for statuses.',
'type' => 'int',
'size' => 'small',
'not null' => TRUE,
'default' => 0,
),
'locked' => array(
'description' => 'A flag indicating whether users can delete the status. 0 => Yes. 1 => No.',
'type' => 'int',
'size' => 'tiny',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
),
'primary key' => array(
'order_status_id',
),
);
return $schema;
}