summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/poll/poll.install2
-rw-r--r--modules/profile/profile.install2
2 files changed, 4 insertions, 0 deletions
diff --git a/modules/poll/poll.install b/modules/poll/poll.install
index f05958cca..f160d1bc7 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 555c0f109..c4a8f2f9e 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,