put pricing in its own field
This commit is contained in:
parent
6cfbc516f8
commit
ae2a9b773b
4 changed files with 30 additions and 1 deletions
|
@ -226,6 +226,7 @@ class ServiceOffering(models.Model):
|
|||
class Plan(models.Model):
|
||||
name = models.CharField(max_length=100)
|
||||
description = ProseEditorField(blank=True, null=True)
|
||||
pricing = ProseEditorField(blank=True, null=True)
|
||||
plan_description = models.ForeignKey(
|
||||
ReusableText,
|
||||
on_delete=models.PROTECT,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue