1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- function uc_earlybird_install() {
-
-
- }
- function uc_earlybird_uninstall() {
-
-
- }
- function uc_earlybird_schema() {
- $schema = array();
- $schema['uc_earlybird'] = array(
- 'fields' => array(
- 'nid' => array(
- 'type' => 'int',
- 'unsigned' => TRUE,
- 'not null' => TRUE,
- ),
- 'date' => array(
- 'type' => 'int',
- 'unsigned' => TRUE,
- 'not null' => TRUE,
- ),
- 'discount' => array(
- 'type' => 'varchar',
- 'length' => 8,
- 'not null' => TRUE,
- ),
- ),
- 'unique keys' => array('nid' => array('nid')),
- );
- return $schema;
- }
|