Dakota Horstman
Dakota Horstman
@rchiodo Perhaps off-topic, but intellisense for the ``django.conf.settings`` object, which includes user ``settings.py`` variables would also be phenomenal.
Albeit, I split my ``settings.py`` out into multiple ``settings/*.py`` files depending on which mode my server is running in. For example: ``settings/base.py``, ``settings/dev.py``, ``settings/prod.py``, ``settings/test.py`` if that makes much of...
@rchiodo I mean all settings, not just model definitions. Like regular intellisense, if I were to type ``settings.``, it would suggest ``DEBUG``, ``INSTALLED_APPS``, ``DATABASES``, etc.
**usbipd list, normally**  **usbipd list, after "Upload and Monitor"**  I tried to reattach the device at `2-2` (note different COM ports), but `usbipd` throws an error claiming that...
I attempted that, but as I noted, `usbipd` claimed the device was already attached, you can see it circled in the picture below. I instead attempted to switch to using...
Ah, got it. Do you happen to have a link to the specific document you're referencing, even if it is paywalled?
The field looks to have been changed from a TextField: https://github.com/coderedcorp/coderedcms/blob/8e04513572498603a6f64968bb88fd7aed7cd63c/coderedcms/migrations/0015_coderedsessionformsubmission_coderedsubmissionrevision.py#L38 As for failing query: ```ALTER TABLE "coderedcms_coderedsessionformsubmission" ALTER COLUMN "form_data" TYPE jsonb``` And a much more informative stacktrace (thanks...
I'm more than willing to try any suggested patches and rapid-fire this. Since the database is so central, I can't make much progress on my project until we resolve this....
@timgraham Confirmed modifying the query (and migration) to run this raw SQL seems to have gotten past this issue: `'ALTER TABLE "coderedcms_coderedsessionformsubmission" ALTER COLUMN "form_data" TYPE jsonb USING "form_data"::JSONB'` From:...
Understood. I ended up with a more "robust" solution with the help of ChatGPT (I am not smart enough for low level things like this lol). ```python # Generated by...