Skip to content

Commit

Permalink
TokenTap: add icon url to constraints
Browse files Browse the repository at this point in the history
  • Loading branch information
ShayanShiravani committed Oct 7, 2023
1 parent dd28cb0 commit 1f07489
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions tokenTap/migrations/0018_constraint_icon_url.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.0.4 on 2023-10-07 05:51

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('tokenTap', '0017_tokendistribution_token_image_url'),
]

operations = [
migrations.AddField(
model_name='constraint',
name='icon_url',
field=models.CharField(blank=True, max_length=255, null=True),
),
]

0 comments on commit 1f07489

Please sign in to comment.