| 1 |
<?php |
<?php |
| 2 |
// $Id: nodequeue.install,v 1.15 2009/04/06 22:38:12 ezrag Exp $ |
// $Id: nodequeue.install,v 1.16 2009/08/19 22:05:46 ezrag Exp $ |
| 3 |
|
|
| 4 |
function nodequeue_schema() { |
function nodequeue_schema() { |
| 5 |
$schema['nodequeue_queue'] = array( |
$schema['nodequeue_queue'] = array( |
| 280 |
// Create the nodequeue_subqueue table. |
// Create the nodequeue_subqueue table. |
| 281 |
$ret[] = update_sql("UPDATE {nodequeue_queue} SET owner = 'nodequeue', show_in_ui = 1, show_in_tab = 1, show_in_links = 1, reference = 0"); |
$ret[] = update_sql("UPDATE {nodequeue_queue} SET owner = 'nodequeue', show_in_ui = 1, show_in_tab = 1, show_in_links = 1, reference = 0"); |
| 282 |
|
|
| 283 |
db_add_table($ret, 'nodequeue_subqueue', array( |
db_create_table($ret, 'nodequeue_subqueue', array( |
| 284 |
'description' => t('Subqueues are minor queues that inherit all of the properties of the parent queue. A parent queue must have at least 1 subqueue to do anything. Reference is for the use of whatever is creating the subqueues in order to link it to some other ID easily.'), |
'description' => t('Subqueues are minor queues that inherit all of the properties of the parent queue. A parent queue must have at least 1 subqueue to do anything. Reference is for the use of whatever is creating the subqueues in order to link it to some other ID easily.'), |
| 285 |
'fields' => array( |
'fields' => array( |
| 286 |
'sqid' => array( |
'sqid' => array( |