mirror of
https://github.com/wahyd4/links.git
synced 2026-08-09 05:06:16 +10:00
23 lines
553 B
Python
23 lines
553 B
Python
from django.db import migrations
|
|
import netscan.fields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('netscan', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='scanprofile',
|
|
name='telegram_bot_token',
|
|
field=netscan.fields.EncryptedCharField(blank=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='scanprofile',
|
|
name='telegram_chat_id',
|
|
field=netscan.fields.EncryptedCharField(blank=True),
|
|
),
|
|
]
|