Reputation: 143
Prestashop uses by default mysql. So my question is, exist some plugin or project to install prestashop 1.6 with postgresql instead mysql?
Thanks!
Upvotes: 2
Views: 4992
Reputation: 6439
Prestashop doesn't support Postgresql unfortunately. And I don't know any plugin that does that.
Here is a link on the forge with that demand : Prestashop and DB PostgreSQL V1.5. Its priority is minor
.
A very interessing study about the feasibility.
UNSIGNED
, auto_increment
, ENUM
- CREATE TABLE
)INSERT ON DUPLICATE KEY UPDATE
, INSERT IGNORE
, INSERT INTO table () VALUES ()
)REPLACE
(non-standard: MySQL expand)Last_Insert_Id
, SELECT SQL_CALC_FOUND_ROWS
, IF(), IFNULL()
)UPDATE LIMIT
, DELETE LIMIT
statements (non-standard: MySQL expand)Db::insert
method.last_insert_id()
function.UPDATE/DELETE LIMIT
logic.Upvotes: 4