I'm creating a database where I have the following hierarchy: Subject -> Topics -> Pages. I know that there will only ever be two subjects. Arts and Science lets say. Is it possible for me to create a topic where I set the parent key to a string "Arts", so that I don't have to create a db.model Subject with only two values?
Also, if I do have to make a class Subject inheriting from db.Model, is there a way I can avoid putting in any parameters since the key.name will be the name of the subject?