{"id":17241779,"url":"https://github.com/jacobian/django-postgres-unlimited-varchar","last_synced_at":"2025-04-14T03:14:45.488Z","repository":{"id":35615361,"uuid":"156615944","full_name":"jacobian/django-postgres-unlimited-varchar","owner":"jacobian","description":"A tiny app adding support unlimited varchar fields (no specified max length) in Django/Postgres.","archived":false,"fork":false,"pushed_at":"2022-09-14T15:01:32.000Z","size":4,"stargazers_count":32,"open_issues_count":1,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-14T03:14:30.474Z","etag":null,"topics":["django","postgres","postgresql"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jacobian.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-11-07T22:20:29.000Z","updated_at":"2023-07-06T00:30:30.000Z","dependencies_parsed_at":"2023-01-16T01:09:55.506Z","dependency_job_id":null,"html_url":"https://github.com/jacobian/django-postgres-unlimited-varchar","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacobian%2Fdjango-postgres-unlimited-varchar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacobian%2Fdjango-postgres-unlimited-varchar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacobian%2Fdjango-postgres-unlimited-varchar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacobian%2Fdjango-postgres-unlimited-varchar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jacobian","download_url":"https://codeload.github.com/jacobian/django-postgres-unlimited-varchar/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248813803,"owners_count":21165634,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["django","postgres","postgresql"],"created_at":"2024-10-15T06:11:18.357Z","updated_at":"2025-04-14T03:14:45.458Z","avatar_url":"https://github.com/jacobian.png","language":"Python","funding_links":[],"categories":["Python"],"sub_categories":[],"readme":"A tiny app adding support unlimited ``varchar`` fields (no specified max length) in Django/Postgres.\n\nUsage::\n\n    from django.db import models\n    from django_postgres_unlimited_varchar import UnlimitedCharField\n\n    class Person(models.Model):\n        name = UnlimitedCharField()\n        ...\n\nWhy?\n\nOut of the box, Django has two fields for text:\n\n* ``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)``.\n* ``TextField``, which is for multi-line text, and has no maximum length. In the database, this creates a field of type ``text``.\n\nClearly missing is a third type: single-line, no max length. Postgres supports this as the ``varchar`` type (note the lack of a length).\n\nThis 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.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjacobian%2Fdjango-postgres-unlimited-varchar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjacobian%2Fdjango-postgres-unlimited-varchar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjacobian%2Fdjango-postgres-unlimited-varchar/lists"}