Hi Folks,
I'm new to MonetDB and trying to setup a schema from a MariaDB export. 
I have a particular table that reports a conflict with the create statement.  I've stripped this down to just a particular field that seems to be causing the issue, but unsure where to go from here.

sql>CREATE TABLE "sc_cat_item_delivery_plan" ("script" string);
CREATE TABLE: zboot_sc_cat_item_delivery_plan_script conflicts

What's interesting is that either changing the name of the table or the name of the field and these statements work.  There is something about this particular combo that is problematic.  
sql>CREATE TABLE "sc_cat_item_delivery_plan1" ("script" string);
operation successful
sql>CREATE TABLE "sc_cat_item_delivery_plan" ("script1" string);
operation successful

I have a total of 2251 tables... all were created except for this one.  I've tried to destroy and recreate the schema with no luck.  Logs don't seem to indicate any issue and trying to use the debug on the client didn't get me anywhere.  Thoughts?  Suggestions?  

--
Please excuse typos... I can't type.