Files
django-ram/dcc/metadata/migrations/0004_company_freelance_decoder_sound.py
2022-04-02 21:37:24 +02:00

24 lines
624 B
Python

# Generated by Django 4.0.2 on 2022-04-02 17:45
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('metadata', '0003_alter_company_options_alter_scale_options_and_more'),
]
operations = [
migrations.AddField(
model_name='company',
name='freelance',
field=models.BooleanField(blank=True, default=False, null=True),
),
migrations.AddField(
model_name='decoder',
name='sound',
field=models.BooleanField(blank=True, default=False, null=True),
),
]