Skip to content

Commit

Permalink
remove default country
Browse files Browse the repository at this point in the history
  • Loading branch information
Grace-Amondi committed Jun 13, 2023
1 parent e4afac3 commit cfa498e
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions site_settings/migrations/0003_alter_organisationsetting_country.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 4.1.9 on 2023-06-13 09:23

from django.db import migrations, models
import django.db.models.deletion


class Migration(migrations.Migration):

dependencies = [
('site_settings', '0002_integrationsettings_enable_auto_forecast'),
]

operations = [
migrations.AlterField(
model_name='organisationsetting',
name='country',
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, related_name='country_setting', to='site_settings.country', verbose_name='Country'),
),
]

0 comments on commit cfa498e

Please sign in to comment.