# HG changeset patch # User Kim Alvefur # Date 1384207758 -3600 # Node ID f6145e894569a5d5bda34cf8a9ea0db4ae8c668f # Parent a19b3646d5f0c4134668968adf06aedfcfbdc371 util.sql: Rewrite auto increment columns to SERIAL for PostgreSQL diff -r a19b3646d5f0 -r f6145e894569 util/sql.lua --- a/util/sql.lua Sun Nov 10 23:10:27 2013 +0000 +++ b/util/sql.lua Mon Nov 11 23:09:18 2013 +0100 @@ -264,13 +264,14 @@ 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";