-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
guoshijiang
committed
Mar 17, 2024
1 parent
dc5ff00
commit 2632c74
Showing
2 changed files
with
37 additions
and
4 deletions.
There are no files selected for viewing
33 changes: 33 additions & 0 deletions
33
airdrop/migrations/0007_alter_projectinteraction_describe_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Generated by Django 4.1.1 on 2024-03-17 12:06 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('airdrop', '0006_period_remove_periodreward_period_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='projectinteraction', | ||
name='describe', | ||
field=models.CharField(max_length=200, verbose_name='交互描述'), | ||
), | ||
migrations.AlterField( | ||
model_name='projectinteraction', | ||
name='name', | ||
field=models.CharField(blank=True, max_length=100, verbose_name='交互名称'), | ||
), | ||
migrations.AlterField( | ||
model_name='projectinteraction', | ||
name='points_type', | ||
field=models.CharField(choices=[('Invite', 'Invite'), ('BridgeTransfer', 'BridgeTransfer'), ('BridgeStaking', 'BridgeStaking'), ('BridgeWithdraw', 'BridgeWithdraw'), ('bridgeGrants', 'bridgeGrants')], default='BridgeTransfer', max_length=100, verbose_name='积分类型'), | ||
), | ||
migrations.AlterField( | ||
model_name='projectinteraction', | ||
name='step', | ||
field=models.CharField(blank=True, max_length=100, verbose_name='交互步骤'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters