Skip to content
This repository has been archived by the owner on Jun 6, 2022. It is now read-only.

Commit

Permalink
Makes both values of the configuration mandatory as the content does …
Browse files Browse the repository at this point in the history
…not make sense otherwise
  • Loading branch information
Robert Rees committed Feb 21, 2015
1 parent 1edc34f commit a66a6c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions models.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from google.appengine.ext import ndb

class Configuration(ndb.Model):
key = ndb.StringProperty()
value = ndb.StringProperty()
key = ndb.StringProperty(required=True)
value = ndb.StringProperty(required=True)

0 comments on commit a66a6c9

Please sign in to comment.