Is there a way to change a CharField to a TextField and keep the data from this column intact?
Right now I have the following:
class TestLog(models.Mod
Assuming that you have access to the database, as you mentioned the way Django talks about adding and removing columns, I've listed methods for both Postgresql and MySQL since you didn't mention what you were using.
Postgresql:
BEGIN;
ALTER TABLE "TestLog"
ALTER COLUMN "failed_reqs" TYPE TEXT,
ALTER COLUMN "passed_reqs" TYPE TEXT;
COMMIT;
MySQL:
BEGIN;
ALTER TABLE TestLog
MODIFY failed_reqs TEXT NULL,
MODIFY passed_reqs TEXT NULL;
COMMIT;
I would highly recommend backing up your database before doing these changes.