Skip to main content

A simple Django app that allow the use of Nullable char field.

Project description

This app is a collection of a widget, form field and db field that allows to have a nullable charfield inside django.

Quick start

  1. Add “nullablecharfield” to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = (
        ...
        'nullablecharfield',
    )
  2. Use in your model CharNullField from nullablecharfield.db.models.fields

  3. You should set null=True and blank=True in the fields that you want to make nullable, like this:

    from django.db import models
    from nullablecharfield.db.models.fields import CharNullField
    
    class Person(models.Model):
        first_name = CharNullField(max_length=30, null=True, blank=True)
        last_name = CharNullField(max_length=30, null=True, blank=True)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-nullablecharfield-0.2.2.tar.gz (4.1 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page