Skip to content

Commit

Permalink
Add the explanation field to the constraints
Browse files Browse the repository at this point in the history
  • Loading branch information
ShayanShiravani committed Nov 22, 2023
1 parent 4602479 commit 76c52c1
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions tokenTap/migrations/0022_constraint_explanation.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.0.4 on 2023-11-22 05:39

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('tokenTap', '0021_alter_constraint_name'),
]

operations = [
migrations.AddField(
model_name='constraint',
name='explanation',
field=models.TextField(blank=True, null=True),
),
]

0 comments on commit 76c52c1

Please sign in to comment.