Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6891963
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T06:28:32+00:00 2026-05-27T06:28:32+00:00

I am creating a simple game database and I am having some problems. There

  • 0

I am creating a simple game database and I am having some problems.

There are 2 models: Material and Building.

class Material(Model):
    type = CharField(max_length=30)

class Building(Model):
    cost = M2M(?)
    input = M2M(?)
    output = M2M(?)

In the material model, material names are held (Wood, Stone, Iron, Plank, Fish, Food etc.).
Building should have a bit more fields, however, I encounter difficulties with these only. Imagine something like “The Settlers” game. The building demands 3 pieces of stone to be build (cost) and it takes 2 pieces of wood (input) to produce 1 plank (output).

How can I make such structure where I could specify the amount of material and easily modify it if necessary.

I have already tried to use through argument, however, it did not let me have 3 or more occurrences in the model.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T06:28:33+00:00Added an answer on May 27, 2026 at 6:28 am

    perhaps your through table could have a quantity field?

    edit:

    ah, i see. this is a limitation due to the way through tables work. A through table only has references to the two models it’s joining together, but can’t know which fields on said models are defining the m2m relationship. So each through table may only be used for one relation. However, with some abstract subclassing we can keep the code fairly clean:

    class BuildingMaterialBase(models.Model):
        material = models.ForeignKey('Material')
        building = models.ForeignKey('Building')
        quantity = models.IntegerField()
    
        class Meta:
            abstract = True
    
    class BuildingMaterialIn(BuildingMaterialBase):
        pass
    
    class BuildingMaterialOut(BuildingMaterialBase):
        pass
    
    
    class Building(models.Model):
        in_ = models.ManyToManyField(Material, through=BuildingMaterialIn)
        out_ = models.ManyToManyField(Material, through=BuildingMaterialOut)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm creating a simple labyrinth game with Java + Swing. The game draws a
I'm pretty new to programming, and I'm creating a simple text-based game.> I'm wondering
Was creating a simple console application to do some prototyping and was shocked to
I'm creating a simple color picker controlled by a custom slider type control. I'm
I'm creating a simple 2D game in javascript/canvas. I need to figure out the
I was creating a drap and drop simple game, dragging and dropping an item
I'm creating a simple JavaScript multiple choice game. Here is a sample question: p
I'm creating a simple 3D game on Windows 7 in C++ using the free
I'm creating a simple midi based game in C and I am wondering if
I'm creating a simple game using HTML and CSS. I have a background image

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.