Add default field value in Django migrations for PostgreSQL
Project description
Django Add Default Value for PostgreSQL
Django Migration Operation that can be used to transfer a field's default value to the database scheme.
Based on django-add-default-value by 3YOURMIND. This variant drops support for other databases, specifically the Azure ODBC driver which does not support current versions of Django.
Dependencies
- Python 3.6, 3.7, or 3.8
- Django 2.2 or 3.0
Installation
pip install django-add-default-value-postgresql
You can then use AddDefaultValue
in your migration file to transfer the default
values to your database. Afterwards, it's just the usual ./manage.py migrate
.
Usage
Add this manually to an autogenerated Migration that adds a new field:
AddDefaultValue(
model_name='my_model',
name='my_field',
value='my_default'
)
Example
Given the following migration:
operations = [
migrations.AddField(
field=models.CharField(default='my_default', max_length=255),
model_name='my_model',
name='my_field',
),
]
Modify the migration to add a default value:
+from django_add_default_value import AddDefaultValue
+
operations = [
migrations.AddField(
field=models.CharField(default='my_default', max_length=255),
model_name='my_model',
name='my_field',
),
+ AddDefaultValue(
+ model_name='my_model',
+ name='my_field',
+ value='my_default'
+ )
]
If you check python manage.py sqlmigrate [app name] [migration]
,
you will see that the default value now gets set.
Testing
You can test against multiple versions of Django using tox
. To test across Python versions, use pyenv to run tox
under each version.
License
django-add-default-value-postgresql is released under the Apache 2.0 License, based on django-add-default-value by 3YOURMIND which is also released under the Apache 2.0 License.
Changes from original source
- removed MySQL-related code
- removed MSSQL-related code
- added allow_migrate_model check on database_forwards and database_backwards
- added support for Python 3.7 and 3.8, dropped support for <3.6
- added support for Django 2.2 and 3.0, dropped support for <2.2
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-add-default-value-postgresql-1.0.0.tar.gz
.
File metadata
- Download URL: django-add-default-value-postgresql-1.0.0.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.7.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 07643c56cf795f6cd6dab31f3d974e65ccbe07817f8dbd3af8b9ae746c619c1a |
|
MD5 | 7d7bb19f322fe72b0a65ba23fbd4cb12 |
|
BLAKE2b-256 | adfbbe436540ac4229bbda00ba8ec6d48684363190789dc2cd03a518ca779c47 |