Drupal 7.12
DatabaseSchemaObjectExistsException: Tabela uc_dotpay_pl_transaction już istnieje. w DatabaseSchema->createTable() (linia 652 z ..../includes/database/schema.inc).
| Comment | File | Size | Author |
|---|---|---|---|
| #3 | dotpay_pl-installation_fix-1457502-3.patch | 828 bytes | depresz |
Comments
Comment #1
PiotrJaniak commentedComment #2
inTOOLS commentedThis is caused by the line
in uc_dotpay_pl.install file.
In the documentation of hook_install()
http://api.drupal.org/api/drupal/modules!system!system.api.php/function/hook_install/7
there is
And the uc_dotpay_pl of course implements hook_schema().
By the way, it is also not necessary to call
in hook_uninstall(), because in Drupal 7 hook_uninstall() takes care about tables created by hook_schema().
http://api.drupal.org/api/drupal/modules!system!system.api.php/function/hook_uninstall/7
Comment #3
depresz commented