22 lines
725 B
Python
22 lines
725 B
Python
# Generated by Django 5.0.4 on 2024-07-23 15:41
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('home', '0019_savedguilds_default_embed_colour'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='GuildSettings',
|
|
fields=[
|
|
('id', models.AutoField(primary_key=True, serialize=False)),
|
|
('guild_id', models.CharField(help_text='Discord snowflake ID for the represented guild.', max_length=128, verbose_name='guild id')),
|
|
('default_embed_colour', models.CharField(blank=True, default='3498db', max_length=6, verbose_name='default embed colour')),
|
|
],
|
|
),
|
|
]
|