questionlp’s avatarquestionlp’s Twitter Archive—№ 26,738

      1. …in reply to @briandarby
        @briandarby There are frameworks out there that include things like object-relational management (ORM) that translates objects into schemas and relationships at the database level without you having to much around with it. Django is one of the popular frameworks out there
    1. …in reply to @questionlp
      @briandarby This is what the structure and relationship of the WWDTM Stats Page database (there have been a few more columns added since this was created). Instead of creating this manually, an ORM would be able to handle this. That said...
      oh my god twitter doesn’t include alt text from images in their API
  1. …in reply to @questionlp
    @briandarby You'll want to think about what your objects will be (teams, team members, events, etc.) and figure out what properties you want them to have. At that point, you would code those up and have the ORM handle the creation and schema migrations as you build upon them.