From 7876b48860862fbe19265450178f63e19a262a22 Mon Sep 17 00:00:00 2001 From: meeb Date: Mon, 20 Feb 2023 14:56:28 +1100 Subject: [PATCH] use backend agnostic text type for custom field, related to #345 and #338 --- tubesync/sync/fields.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tubesync/sync/fields.py b/tubesync/sync/fields.py index e67797f..465f1d2 100644 --- a/tubesync/sync/fields.py +++ b/tubesync/sync/fields.py @@ -49,7 +49,7 @@ class CommaSepChoiceField(models.Field): return name, path, args, kwargs def db_type(self, _connection): - return 'TextField' + return 'text' def get_my_choices(self): choiceArray = []