function jsonlog_update_7001 in JSONlog 7
Same name and namespace in other branches
- 7.2 jsonlog.install \jsonlog_update_7001()
Removes obsolete conf variables.
File
- ./
jsonlog.install, line 22 - Install, update and uninstall functions for the JSONlog module.
Code
function jsonlog_update_7001() {
db_delete('variable')
->condition('name', array(
'jsonlog_fields',
'jsonlog_format_version',
), 'IN')
->execute();
}