From a clean install trying to make a content type a Bucket or a Resource...
user warning: Unknown column 'auto_assign_bucket_item' in 'field list' query: UPDATE merci_node_type SET type_setting = 'bucket', max_hours_per_reservation = 0, allow_overnight = 0, allow_weekends = 0, late_fee_per_hour = 0, rate_per_hour = 0, fee_free_hours = 0, status = 1, spare_items = 0, min_cancel_hours = 0, autocheckout = 0, autocheckin = 0, selfcheckout = 0, grouping = 0, auto_assign_bucket_item = 0 WHERE type = 'merci_dv_camera' in /Applications/MAMP/htdocs/cleantest/sites/all/modules/merci/merci.module on line 1848.
In merci.install I see...
function merci_update_6202() {
$ret = array();
$ret[] = update_sql("ALTER TABLE {merci_node_type} ADD auto_assign_bucket_item TINYINT NULL;");
return $ret;
}
I've run update.php, but that table is still missing the auto_assign_bucket_item column.
Comments
Comment #1
darrick commented