From dc9f03fb56955c6b35ae2d78e3add8f82cf6633a Mon Sep 17 00:00:00 2001 From: rbock Date: Sun, 20 Mar 2016 18:27:38 +0100 Subject: [PATCH] Added enum and set to be interpreted as text Maybe we will need a better mapping one fine day... --- scripts/ddl2cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/ddl2cpp b/scripts/ddl2cpp index 2b422078..65f50687 100755 --- a/scripts/ddl2cpp +++ b/scripts/ddl2cpp @@ -128,6 +128,8 @@ types = { 'date' : 'day_point', 'datetime' : 'time_point', 'timestamp' : 'time_point', + 'enum' : 'text', # MYSQL + 'set' : 'text', # MYSQL }