function profile_uninstall in Drupal 5
Same name and namespace in other branches
- 6 modules/profile/profile.install \profile_uninstall()
- 7 modules/profile/profile.install \profile_uninstall()
Implementation of hook_uninstall().
File
- modules/
profile/ profile.install, line 72
Code
function profile_uninstall() {
db_query('DROP TABLE {profile_fields}');
db_query('DROP TABLE {profile_values}');
variable_del('profile_block_author_fields');
}