Skip to content

Commit

Permalink
Merge pull request #183 from TwilioDevEd/upgrade-django-3-2
Browse files Browse the repository at this point in the history
Upgrade Django to 3.2.0
  • Loading branch information
jefflinwood authored Jan 12, 2022
2 parents 49e5ad3 + cc3f47f commit e52bd8c
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
flake8==3.7.8

# Django Framework
Django==2.2.5
Django==3.2.0

# Third-party app dependencies
twilio==6.30.0
Expand Down
18 changes: 18 additions & 0 deletions task_router/migrations/0002_alter_missedcall_id.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.2 on 2021-12-16 20:12

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('task_router', '0001_initial'),
]

operations = [
migrations.AlterField(
model_name='missedcall',
name='id',
field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
),
]
2 changes: 1 addition & 1 deletion templates/base.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% load staticfiles %}
{% load static %}

<!DOCTYPE html>
<html lang="en">
Expand Down
2 changes: 2 additions & 0 deletions twilio_sample_project/settings/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,3 +148,5 @@

# Redirect login to /support/dashboard
LOGIN_REDIRECT_URL = '/support/dashbaord'

DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'

0 comments on commit e52bd8c

Please sign in to comment.