Skip to content

Commit

Permalink
Fix the installer for sql files
Browse files Browse the repository at this point in the history
  • Loading branch information
Anderson Grüdtner Martins committed Sep 12, 2014
1 parent bada1e1 commit fedfaad
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/com_osdownloads/osdownloads.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,22 +52,19 @@

<install> <!-- Runs on install -->
<sql>
<file driver="mysql" charset="utf8">sql/install.mysql.utf8.sql</file>
<file driver="mysqli" charset="utf8">sql/install.mysql.utf8.sql</file>
<file driver="mysql" charset="utf8">sql/install/mysql/install.sql</file>
</sql>
</install>

<uninstall> <!-- Runs on uninstall -->
<sql>
<file driver="mysql" charset="utf8">sql/uninstall.mysql.utf8.sql</file>
<file driver="mysqli" charset="utf8">sql/uninstall.mysql.utf8.sql</file>
<file driver="mysql" charset="utf8">sql/install/mysql/uninstall.sql</file>
</sql>
</uninstall>

<update>
<schemas>
<schemapath type="mysql" charset="utf8">sql/updates/mysql</schemapath>
<schemapath type="mysqli" charset="utf8">sql/updates/mysql</schemapath>
</schemas>
</update>

Expand Down

1 comment on commit fedfaad

@andergmartins
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fix #15

Please sign in to comment.