Is it possible to modify the base class?
When you create a new class you get Code, Description and Notes. I want to add a fourth called 'Name' that every class will inherit. I tried two methods that give me the result I want but I wanted to see if there was a better way or any implications to the methods I have tried.
1. Add a column to the class table in PostgreSQL replicating the description column (Seems to work but I've not tested it extensively)
2. Add a superclass and put everything under that (kind of messy and I don't really like it)