My app will only have three instances of the model Category
- "Published", "Draft", "Unpublished".
Instinctively it feels redundant to create a table for this.
I'm thinking of storing the three category titles in a Constant
instead, but I don't know where the best place is to put the Constant
such that it can be referenced by multiple models.
Is there any better solution to this, or am I overthinking the issue all together (i.e. should I just create a "normal" model class/table)?