Skip to main content
AI Assist is now on Stack Overflow. Start a chat to get instant answers from across the network. Sign up to save and share your chats.
0 votes
0 answers
78 views

AccrediDoc - Multi-tenant Accreditation Management System A comprehensive Django-based multi-tenant accreditation management system designed for healthcare organizations in India. Manage NABL, NABH, ...
Dr BRIJESH PATEL's user avatar
0 votes
0 answers
39 views

I'm working on a multi-tenant Django project using django-tenants with Django 3.2.16. I created an app called journal_nav and initially added it only to TENANT_APPS. Later, I moved it to SHARED_APPS ...
Chandragupta Borkotoky's user avatar
0 votes
1 answer
78 views

I have created a Django project in my Visual Studio solution. The db.sqlite3 file was also created. There are a few classes in models.py. class Question(models.Model): q_id = models.IntegerField() ...
sukesh's user avatar
  • 2,399
0 votes
0 answers
122 views

I am trying to debug and figure out what the issue is. When trying to search, I just get annoying AI responses which I don't want. Here is my traceback: Traceback (most recent call last): File &...
Angelhappy's user avatar
0 votes
1 answer
77 views

I have 2 apps in my django project customer app trades app Customer app has following tables in models.py customer_table trade_plan_table service_plan_table customer_payments trades app has ...
hanisha nandigam's user avatar
0 votes
2 answers
133 views

I'm working on a Django project, but I'm facing an issue where no tables are being created in my database even after running migrations. Django version:5.1.3 Database:MySQL OS:ubuntu 24.04.1 LTS 1 ...
Adheen Pk's user avatar
0 votes
0 answers
74 views

I am running a Django project inside a Docker container, and I am facing an issue with migrations after adding a new model to models.py. When I try to apply the migrations, the system looks for the ...
Jan Sodomka's user avatar
1 vote
1 answer
50 views

While using Django 5.1, I'm trying to create a GeneratedField which should return True or False depending on which file has been uploaded. The model will accept both image- and video files. I want to ...
kunambi's user avatar
  • 772
0 votes
1 answer
59 views

why django makemigration command creates python based code instead of creating sql commands, Someone please explain from design decision point of view, and what benefits we get from it.
indianwebdevil's user avatar
0 votes
1 answer
130 views

I am making a web app (I am a student and this is my first attempt of building a project) using stack: Django, Vue and MySQL. Attaching link to git repo here: https://github.com/yeshapan/...
Yesha Pandya's user avatar
1 vote
1 answer
52 views

python manage.py showmigrations shows: mainapp [X] 0001_initial ... [X] 0240_employer_data [X] 0241_person_metadata [X] 0242_personemployer_employerworkplace [X] ...
Nils's user avatar
  • 428
0 votes
1 answer
81 views

I’m trying to connect my PostgreSQL-17 database to a Django project running in a Conda environment on Ubuntu-24. However, when I run python manage.py makemigrations, I keep encountering the following ...
NOURA's user avatar
  • 1
0 votes
0 answers
198 views

manage.py showmigrations shows me a list like ... [X] 0240_employer_data (A) [X] 0241_person_metadata (B) [ ] 0242_delete_capability_delete_collection (C) [X] 0242_personemployer_employerworkplace ...
Nils's user avatar
  • 428
0 votes
0 answers
60 views

I need to store file outside MEDIA_ROOT so I use this approach from django.core.files.storage import FileSystemStorage from django.db import models from myproject.settings import SOME_DIR fs = ...
lp1051's user avatar
  • 501
1 vote
2 answers
238 views

Let's say I have a model: class MyModel(models.Model): ... field_no_need_anymore = Charfield(...) I want to remove field_no_need_anymore, but I don't want to apply changes to the database ...
Rm1's user avatar
  • 73

15 30 50 per page
1
2 3 4 5
101