function weather_es_install in Weather_es 7
Same name and namespace in other branches
- 5 weather_es.install \weather_es_install()
- 6.3 weather_es.install \weather_es_install()
- 6 weather_es.install \weather_es_install()
- 6.2 weather_es.install \weather_es_install()
hook_install().
File
- ./
weather_es.install, line 82 - Install de drupal schema for the weather_es module
Code
function weather_es_install() {
//drupal_install_schema('weather_es');
db_query("ALTER TABLE {weather_es_conf} CHANGE cit_cod cit_cod INT(5) ZEROFILL DEFAULT 0 NOT NULL");
db_query("ALTER TABLE {weather_es_data} CHANGE cit_cod cit_cod INT(5) ZEROFILL DEFAULT 0 NOT NULL");
}