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 details)

Uploaded Source

File details

Details for the file django-nullablecharfield-0.2.2.tar.gz.

File metadata

File hashes

Hashes for django-nullablecharfield-0.2.2.tar.gz
Algorithm Hash digest
SHA256 02520bc43bc4a900cda025478c95e3fecab96844e0f143d6a7d6e6bdd61902d3
MD5 ff8770ce31201651382564a6246ad428
BLAKE2b-256 952b1d73d168b4e46f3866f7a66e28a429c05047b439a1703bb837f1738a1a63

See more details on using hashes here.

Supported by

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