Commit b747f0b1 authored by Guilherme Blanco's avatar Guilherme Blanco

Merge pull request #244 from cedriclombardot/patch-1

Enable Postgresql plateform to map inet column type
parents e65517e0 0c94256a
...@@ -722,6 +722,7 @@ class PostgreSqlPlatform extends AbstractPlatform ...@@ -722,6 +722,7 @@ class PostgreSqlPlatform extends AbstractPlatform
'_varchar' => 'string', '_varchar' => 'string',
'char' => 'string', 'char' => 'string',
'bpchar' => 'string', 'bpchar' => 'string',
'inet' => 'string',
'date' => 'date', 'date' => 'date',
'datetime' => 'datetime', 'datetime' => 'datetime',
'timestamp' => 'datetime', 'timestamp' => 'datetime',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment