diff --git a/cookbook/migrations/0214_delete_shopping_model.py b/cookbook/migrations/0214_delete_shopping_model.py deleted file mode 100644 index 74941a830..000000000 --- a/cookbook/migrations/0214_delete_shopping_model.py +++ /dev/null @@ -1,18 +0,0 @@ -# Generated by Django 4.2.10 on 2024-02-19 20:21 - -from django.db import migrations - - -class Migration(migrations.Migration): - dependencies = [ - ( - "cookbook", - "0213_remove_property_property_unique_import_food_per_space_and_more", - ), - ] - - operations = [ - migrations.DeleteModel( - name="ShoppingList", - ), - ] diff --git a/cookbook/migrations/0216_delete_shoppinglist.py b/cookbook/migrations/0216_delete_shoppinglist.py new file mode 100644 index 000000000..b74121ce2 --- /dev/null +++ b/cookbook/migrations/0216_delete_shoppinglist.py @@ -0,0 +1,16 @@ +# Generated by Django 4.2.10 on 2024-02-28 16:21 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('cookbook', '0215_connectorconfig'), + ] + + operations = [ + migrations.DeleteModel( + name='ShoppingList', + ), + ] diff --git a/recipes/settings.py b/recipes/settings.py index 98f4f8437..d5c6f817a 100644 --- a/recipes/settings.py +++ b/recipes/settings.py @@ -105,34 +105,10 @@ MESSAGE_TAGS = {messages.ERROR: 'danger'} # Application definition INSTALLED_APPS = [ - 'dal', - 'dal_select2', - 'django.contrib.admin', - 'django.contrib.auth', - 'django.contrib.contenttypes', - 'django.contrib.sessions', - 'django.contrib.messages', - 'django.contrib.sites', - 'django.contrib.staticfiles', - 'django.contrib.postgres', - 'oauth2_provider', - 'django_prometheus', - 'django_tables2', - 'corsheaders', - 'crispy_forms', - 'crispy_bootstrap4', - 'rest_framework', - 'rest_framework.authtoken', - 'django_cleanup.apps.CleanupConfig', - 'webpack_loader', - 'django_vite', - 'django_js_reverse', - 'hcaptcha', - 'allauth', - 'allauth.account', - 'allauth.socialaccount', - 'cookbook.apps.CookbookConfig', - 'treebeard', + 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', + 'django.contrib.sites', 'django.contrib.staticfiles', 'django.contrib.postgres', 'oauth2_provider', 'django_prometheus', 'django_tables2', 'corsheaders', 'crispy_forms', + 'crispy_bootstrap4', 'rest_framework', 'rest_framework.authtoken', 'django_cleanup.apps.CleanupConfig', 'webpack_loader', 'django_vite', 'django_js_reverse', 'hcaptcha', 'allauth', + 'allauth.account', 'allauth.socialaccount', 'cookbook.apps.CookbookConfig', 'treebeard', ] PLUGINS_DIRECTORY = os.path.join(BASE_DIR, 'recipes', 'plugins')