Skip to content

Commit 56ffa20

Browse files
committed
added migrations
1 parent ad6df5e commit 56ffa20

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 3.0.6 on 2020-08-27 15:10
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('cryptapi', '0006_auto_20200505_0304'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='provider',
15+
name='coin',
16+
field=models.CharField(choices=[('btc', 'Bitcoin'), ('eth', 'Ethereum'), ('bch', 'Bitcoin Cash'), ('ltc', 'Litecoin'), ('iota', 'IOTA'), ('xmr', 'Monero'), ('erc20_usdt', 'ERC-20 USDT'), ('erc20_usdc', 'ERC-20 USDC'), ('erc20_busd', 'ERC-20 BUSD'), ('erc20_pax', 'ERC-20 PAX'), ('erc20_tusd', 'ERC-20 TUSD'), ('erc20_bnb', 'ERC-20 BNB'), ('erc20_link', 'ERC-20 ChainLink'), ('erc20_cro', 'ERC-20 Crypto.com Coin'), ('erc20_mkr', 'ERC-20 Maker'), ('erc20_nexo', 'ERC-20 NEXO'), ('erc20_bcz', 'ERC-20 BECAZ')], max_length=16, unique=True, verbose_name='Coin'),
17+
),
18+
]

0 commit comments

Comments
 (0)