mirror of https://github.com/logos-co/open-law.git
rename about to text in Interpretation
This commit is contained in:
parent
299f63d6d2
commit
bd7c7765b4
|
@ -6,7 +6,7 @@ class Interpretation(BaseModel):
|
|||
__tablename__ = "interpretations"
|
||||
|
||||
label = db.Column(db.String(1024), unique=False, nullable=False)
|
||||
about = db.Column(db.Text, unique=False, nullable=False)
|
||||
text = db.Column(db.Text, unique=False, nullable=False)
|
||||
marked = db.Column(db.Boolean, default=False)
|
||||
|
||||
# Foreign keys
|
||||
|
|
Loading…
Reference in New Issue