I have just done a clean install of Django-PBX + FreeSWITCH onto Debian12. I'm at the point of migrating to MySQL, and I have modified the settings.py file as follows:
as I want Django-PBX to use MySQL, and FreeSWITCH to use SQLite. But when performing the
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'djangopbx',
'USER': 'myun',
'PASSWORD': 'mypw',
'HOST': 'localhost',
'PORT': '3306'
},
'freeswitch': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'freeswitch',
}
as I want Django-PBX to use MySQL, and FreeSWITCH to use SQLite. But when performing the
command I get error/warning "no changes detected". So I'm guessing nothing was performed. Do I continue or have I gone off track? I am following these StackOverflow instructionspython manage.py makemigrations