Index: db/models/fields/__init__.py
===================================================================
--- db/models/fields/__init__.py	(revision 6439)
+++ db/models/fields/__init__.py	(working copy)
@@ -238,7 +238,7 @@
         if self.default is not NOT_PROVIDED:
             if callable(self.default):
                 return self.default()
-            return self.default
+            return force_unicode(self.default)
         if not self.empty_strings_allowed or (self.null and settings.DATABASE_ENGINE != 'oracle'):
             return None
         return ""
