Metadata-Version: 1.1
Name: django-nullablecharfield
Version: 0.2.1
Summary: A simple Django app that allow the use of Nullable char field.
Home-page: https://github.com/alepane21/django-nullablecharfield
Author: Alessandro Pagnin
Author-email: alepane@gmail.com
License: BSD License
Description: Django NullableCharField
        ==========================
        
        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 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) 
                  last_name = CharNullField(max_length=30, null=True)
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
