gabn88
gabn88
I tried to add `?%27init_command%27%3A%20%22SET%20sql_mode%3D%27STRICT_TRANS_TABLES%27%22` To my database_url, but unfortunately it doesn't seem to work :(
``` class TimeZoneSerializerField(serializers.ChoiceField): def __init__(self, **kwargs): super().__init__(TimeZoneField.default_choices, **kwargs) def to_representation(self, value): return str(super().to_representation(value)) ``` This is how I do it now. Maybe this could be incorporated into this package. It...
Same issue here. I put the modeltranslation on the Permission model of contrib.auth.models. Cannot update to Django 1.8 or higher due to this issue :(
yes, I tried Django 1.8.3 and Django 1.9, both gave this error. Django 1.7.9 is fine.
@unaizalakain That is exactly what is happening. I first used null=True, blank=True on my charfields, but I didn't like it after having some issues with it (especially in combination with...
@tomchristie Thank you for responding on this issue. I have created the pull request as per your advice. https://github.com/encode/django-rest-framework/pull/8598 I cannot see how this would create problems in existing projects....
It is nice that people are referring to the actual documents to decide that it works as intended, but let's stick to what one of the early proponents of JWT...
The limit_choices_to={'subscribed': True} appears to be new, just as the db_index. At least, when I compare with the initial migration.
Happened again. ``` # Generated by Django 2.2.7 on 2019-11-22 21:11 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('newsletter', '0004_auto_20180407_1043'), ] operations = [ migrations.AlterField( model_name='submission', name='subscriptions',...