Django 2.1.9 and migrations

This commit is contained in:
Oleg Lavrovsky 2019-06-25 15:22:49 +02:00
parent 5e29168565
commit b79f651c4e
3 changed files with 37 additions and 15 deletions

View file

@ -11,7 +11,6 @@ django-debug-toolbar = "*"
[packages] [packages]
ConcurrentLogHandler = "*" ConcurrentLogHandler = "*"
Django = "~=2.1"
django-anymail = "*" django-anymail = "*"
django-libsass = "*" django-libsass = "*"
django-redis = "*" django-redis = "*"
@ -28,3 +27,4 @@ wagtail = ">=2.0"
whitenoise = "*" whitenoise = "*"
django-crispy-forms = "*" django-crispy-forms = "*"
python-dotenv = "*" python-dotenv = "*"
django = "==2.1.9"

21
Pipfile.lock generated
View file

@ -1,7 +1,7 @@
{ {
"_meta": { "_meta": {
"hash": { "hash": {
"sha256": "2945aa526ae27d57aaa7e13ad272c9ce05fa6416af29d5ad54276d2596095b92" "sha256": "d398b7eb5fc9c5e555744d820c9b60a4da2812cb784c13fad44aa394d3fe9592"
}, },
"pipfile-spec": 6, "pipfile-spec": 6,
"requires": {}, "requires": {},
@ -67,11 +67,11 @@
}, },
"django": { "django": {
"hashes": [ "hashes": [
"sha256:753d30d3eb078064d2ddadfea65083c9848074a7f93d7b4dc7fa6b1380d278f5", "sha256:5052def4ff0a84bdf669827fdbd7b7cc1ac058f10232be6b21f37c6824f578da",
"sha256:7cb67e8b934fab23b6daed7144da52e8a25a47eba7f360ca43d2b448506b01ad" "sha256:bb72b5f8b53f8156280eaea520b548ac128a53f80cebc856c5e0fb555d44d529"
], ],
"index": "pypi", "index": "pypi",
"version": "==2.2.2" "version": "==2.1.9"
}, },
"django-anymail": { "django-anymail": {
"hashes": [ "hashes": [
@ -422,13 +422,6 @@
], ],
"version": "==0.34.0" "version": "==0.34.0"
}, },
"sqlparse": {
"hashes": [
"sha256:40afe6b8d4b1117e7dff5504d7a8ce07d9a1b15aeeade8a2d10f130a834f8177",
"sha256:7c3dca29c022744e95b547e867cee89f4fce4373f3549ccd8797d8eb52cdb873"
],
"version": "==0.3.0"
},
"stellar": { "stellar": {
"hashes": [ "hashes": [
"sha256:8edd4d19900d47d7e17f1f51dedf7a3cf1e1283d2e52c084b3f69b761f3ae5ce" "sha256:8edd4d19900d47d7e17f1f51dedf7a3cf1e1283d2e52c084b3f69b761f3ae5ce"
@ -498,11 +491,11 @@
}, },
"django": { "django": {
"hashes": [ "hashes": [
"sha256:753d30d3eb078064d2ddadfea65083c9848074a7f93d7b4dc7fa6b1380d278f5", "sha256:5052def4ff0a84bdf669827fdbd7b7cc1ac058f10232be6b21f37c6824f578da",
"sha256:7cb67e8b934fab23b6daed7144da52e8a25a47eba7f360ca43d2b448506b01ad" "sha256:bb72b5f8b53f8156280eaea520b548ac128a53f80cebc856c5e0fb555d44d529"
], ],
"index": "pypi", "index": "pypi",
"version": "==2.2.2" "version": "==2.1.9"
}, },
"django-debug-toolbar": { "django-debug-toolbar": {
"hashes": [ "hashes": [

View file

@ -0,0 +1,29 @@
# Generated by Django 2.1.9 on 2019-06-25 13:21
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('home', '0025_auto_20180628_1611'),
]
operations = [
migrations.AlterField(
model_name='contact',
name='home_site',
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailcore.Site'),
),
migrations.AlterField(
model_name='contactformfield',
name='field_type',
field=models.CharField(choices=[('singleline', 'Single line text'), ('multiline', 'Multi-line text'), ('email', 'Email'), ('number', 'Number'), ('url', 'URL'), ('checkbox', 'Checkbox'), ('checkboxes', 'Checkboxes'), ('dropdown', 'Drop down'), ('multiselect', 'Multiple select'), ('radio', 'Radio buttons'), ('date', 'Date'), ('datetime', 'Date/time'), ('hidden', 'Hidden field')], max_length=16, verbose_name='field type'),
),
migrations.AlterField(
model_name='socialcontact',
name='home_site',
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailcore.Site'),
),
]