27 lines
916 B
Python
27 lines
916 B
Python
# Generated by Django 5.2.7 on 2026-02-04 05:04
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('core', '0007_wablasconfiguration'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='ThawaniConfiguration',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('api_key', models.CharField(max_length=500, verbose_name='Secret Key')),
|
|
('publishable_key', models.CharField(max_length=500, verbose_name='Publishable Key')),
|
|
('is_sandbox', models.BooleanField(default=True, verbose_name='Sandbox Mode')),
|
|
],
|
|
options={
|
|
'verbose_name': 'Thawani Configuration',
|
|
'verbose_name_plural': 'Thawani Configuration',
|
|
},
|
|
),
|
|
]
|