function weather_es_install in Weather_es 6.2
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()
- 7 weather_es.install \weather_es_install()
Implementation of hook_install().
File
- ./
weather_es.install, line 264 - Non-displayable characters.
Code
function weather_es_install() {
drupal_install_schema('weather_es');
db_query("ALTER TABLE {weather_es_config} CHANGE cod_pro cod_pro INT(2) ZEROFILL DEFAULT 0 NOT NULL");
db_query("ALTER TABLE {weather_es_config} CHANGE cod_loc cod_loc INT(3) ZEROFILL DEFAULT 0 NOT NULL");
db_query("ALTER TABLE {weather_es_data} CHANGE cod_pro cod_pro INT(2) ZEROFILL DEFAULT 0 NOT NULL");
db_query("ALTER TABLE {weather_es_data} CHANGE cod_loc cod_loc INT(3) ZEROFILL DEFAULT 0 NOT NULL");
db_query("ALTER TABLE {weather_es_aemet} CHANGE cod_pro cod_pro INT(2) ZEROFILL DEFAULT 0 NOT NULL");
db_query("ALTER TABLE {weather_es_aemet} CHANGE cod_loc cod_loc INT(3) ZEROFILL DEFAULT 0 NOT NULL");
// Insert the AEMET cities code
require_once drupal_get_path('module', 'weather_es') . '/weather_es_data.inc';
_weather_es_fill_aemet_table();
}