function getid3_update_7101 in getID3() 7
Same name and namespace in other branches
- 7.2 getid3.install \getid3_update_7101()
Create the getid3_meta table.
File
- ./
getid3.install, line 154 - Install, update and uninstall functions for the getid3 module.
Code
function getid3_update_7101() {
// Lets get the schema.
$schema = getid3_schema();
// Create the table.
db_create_table('getid3_meta', $schema['getid3_meta']);
}