Skip to main content

A tiny app adding support unlimited varchar fields in Django/Postgres.

Project description

A tiny app adding support unlimited varchar fields (no specified max length) in Django/Postgres.

Usage:

from django.db import models
from django_postgres_unlimited_varchar import UnlimitedCharField

class Person(models.Model):
    name = UnlimitedCharField()
    ...

Why?

Out of the box, Django has two fields for text:

  • CharField, which is for single-line text, and has a required maximum length (the max_length argument). In the database, this creates a field of type varchar(LENGTH).

  • TextField, which is for multi-line text, and has no maximum length. In the database, this creates a field of type text.

Clearly missing is a third type: single-line, no max length. Postgres supports this as the varchar type (note the lack of a length).

This field adds that type. AFAIK there isn’t any performance hit in using this, so it’s suitable for any situation where there isn’t a clear required max length.

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-postgres-unlimited-varchar-1.1.1.tar.gz (1.7 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file django-postgres-unlimited-varchar-1.1.1.tar.gz.

File metadata

File hashes

Hashes for django-postgres-unlimited-varchar-1.1.1.tar.gz
Algorithm Hash digest
SHA256 b673255f695873031418b120b4525c950c089d901829ad96371c47644616b115
MD5 66cd231538816057408b0f9b4249658e
BLAKE2b-256 82db041f3cf79d32c9c010839a488c60c25c4ecff61fdab48da5a182e3d187a5

See more details on using hashes here.

File details

Details for the file django_postgres_unlimited_varchar-1.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for django_postgres_unlimited_varchar-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 2fe9fdc9530a173a5653c27b9cff783a27d3418a27594d790f09366871078567
MD5 91ab9e27ad52692ba4a6f4fa43abf2e8
BLAKE2b-256 0b738b47d5f56869040b5448c24ed1f16acfe8924167cdf897734072b429d3d5

See more details on using hashes here.

Supported by

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