aboutsummaryrefslogtreecommitdiffstats
path: root/util/sql.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2013-11-11 23:09:18 +0100
committerKim Alvefur <zash@zash.se>2013-11-11 23:09:18 +0100
commit95457cb25bd866e3e06cc4cf1116e8408f62b744 (patch)
tree96f18e80c6cdd8dda33087606526f32e5a3be271 /util/sql.lua
parenta80e00e16f382874e7caffd60b37160fc2d81f5b (diff)
downloadprosody-95457cb25bd866e3e06cc4cf1116e8408f62b744.tar.gz
prosody-95457cb25bd866e3e06cc4cf1116e8408f62b744.zip
util.sql: Rewrite auto increment columns to SERIAL for PostgreSQL
Diffstat (limited to 'util/sql.lua')
-rw-r--r--util/sql.lua7
1 files changed, 4 insertions, 3 deletions
diff --git a/util/sql.lua b/util/sql.lua
index 07b1a4e0..a7f46421 100644
--- a/util/sql.lua
+++ b/util/sql.lua
@@ -264,13 +264,14 @@ function engine:_create_table(table)
if col_type == "MEDIUMTEXT" and self.params.driver ~= "MySQL" then
col_type = "TEXT"; -- MEDIUMTEXT is MySQL-specific
end
+ if col.auto_increment == true and self.params.driver == "PostgreSQL" then
+ col_type = "BIGSERIAL";
+ end
sql = sql.."`"..col.name.."` "..col_type;
if col.nullable == false then sql = sql.." NOT NULL"; end
if col.primary_key == true then sql = sql.." PRIMARY KEY"; end
if col.auto_increment == true then
- if self.params.driver == "PostgreSQL" then
- sql = sql.." SERIAL";
- elseif self.params.driver == "MySQL" then
+ if self.params.driver == "MySQL" then
sql = sql.." AUTO_INCREMENT";
elseif self.params.driver == "SQLite3" then
sql = sql.." AUTOINCREMENT";