Created
September 27, 2016 19:38
-
-
Save specialcircumstances/671863d896e8bccc5f003778a94143dc to your computer and use it in GitHub Desktop.
station commodities
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class StationCommodity(models.Model): | |
# Buy Sell Don't bring? | |
commodity = models.ForeignKey(Commodity, models.CASCADE) | |
station = models.ForeignKey(Station, models.CASCADE) | |
imported = models.NullBooleanField(blank=True, null=True) # Y N ? | |
exported = models.NullBooleanField(blank=True, null=True) # Y N ? | |
prohibited = models.NullBooleanField(blank=True, null=True) # Y N ? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment