diff --git a/modules/poll/poll.install b/modules/poll/poll.install
index f05958cca2fe4c76f7f49287f673e94cc425a998..f160d1bc785c419c9fb9dd41d244d635e31a2d18 100644
--- a/modules/poll/poll.install
+++ b/modules/poll/poll.install
@@ -31,6 +31,8 @@ function poll_install() {
         PRIMARY KEY (chid),
         KEY nid (nid)
       ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
+      break;
+
     case 'pgsql':
       db_query("CREATE TABLE {poll} (
         nid uint NOT NULL default '0',
diff --git a/modules/profile/profile.install b/modules/profile/profile.install
index 555c0f109eefe53e350f5b2e22ad613bc7ef0859..c4a8f2f9e67ff60222badf8fc39fe7158fdab684 100644
--- a/modules/profile/profile.install
+++ b/modules/profile/profile.install
@@ -31,6 +31,8 @@ function profile_install() {
         KEY uid (uid),
         KEY fid (fid)
       ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
+      break;
+
     case 'pgsql':
       db_query("CREATE TABLE {profile_fields} (
         fid serial,