create table recipes_dup ( `id` int(4) NOT NULL AUTO_INCREMENT COMMENT 'Leave Blank will auto increment',
      `title` varchar(200) COLLATE utf8_unicode_ci NOT NULL, `instructions` text COLLATE utf8_unicode_ci NOT NULL,
      PRIMARY KEY (`id`)) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 
