27 lines
992 B
Python
27 lines
992 B
Python
# Generated by Django 5.2.7 on 2026-02-04 04:16
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('core', '0006_student_email_otp_code_student_is_email_verified_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='WablasConfiguration',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('api_url', models.URLField(default='https://kudus.wablas.com/api/send-message', verbose_name='API URL')),
|
|
('api_token', models.CharField(max_length=500, verbose_name='API Token')),
|
|
('secret_key', models.CharField(blank=True, max_length=500, null=True, verbose_name='Secret Key')),
|
|
],
|
|
options={
|
|
'verbose_name': 'Wablas Configuration',
|
|
'verbose_name_plural': 'Wablas Configuration',
|
|
},
|
|
),
|
|
]
|