You are here

function weather_es_install in Weather_es 6.3

Same name and namespace in other branches
  1. 5 weather_es.install \weather_es_install()
  2. 6 weather_es.install \weather_es_install()
  3. 6.2 weather_es.install \weather_es_install()
  4. 7 weather_es.install \weather_es_install()

hook_install().

File

./weather_es.install, line 72

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");
}