Skip to content

Instantly share code, notes, and snippets.

@medwards
Created March 23, 2012 15:14
Show Gist options
  • Save medwards/2171614 to your computer and use it in GitHub Desktop.
Save medwards/2171614 to your computer and use it in GitHub Desktop.
person = Person(name='Alice')
DBSession.add(person)
message = Message(person_id=person.id, content="a message to bob")
DBSession.add(message)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment