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
Add “nullablecharfield” to your INSTALLED_APPS setting like this:
INSTALLED_APPS = ( ... 'nullablecharfield', )Use in your model CharNullField from nullablecharfield.db.models.fields
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-nullablecharfield-0.2.2.tar.gz.
File metadata
- Download URL: django-nullablecharfield-0.2.2.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
02520bc43bc4a900cda025478c95e3fecab96844e0f143d6a7d6e6bdd61902d3
|
|
| MD5 |
ff8770ce31201651382564a6246ad428
|
|
| BLAKE2b-256 |
952b1d73d168b4e46f3866f7a66e28a429c05047b439a1703bb837f1738a1a63
|