Skip to content

Instantly share code, notes, and snippets.

@mmourafiq
Last active December 21, 2015 14:29
Show Gist options
  • Save mmourafiq/6320234 to your computer and use it in GitHub Desktop.
Save mmourafiq/6320234 to your computer and use it in GitHub Desktop.
def forwards(self, orm):
for a in orm.Author.object.all():
try:
a.first_name, a.second_name = a.name.split(" ")
except:
a.first_name, a.second_name = a.name, ""
c.save()
def backwards(self, orm):
for a in orm.Author.object.all():
a.name = ""
a.save()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment