Skip to content

Commit

Permalink
Merge pull request #37 from edx/ashultz0/rm-is-verified-db
Browse files Browse the repository at this point in the history
finish removing verified name is verified
  • Loading branch information
ashultz0 authored Aug 18, 2021
2 parents 3e700cf + b3bf734 commit 17387ea
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ Change Log
Unreleased
~~~~~~~~~~

[0.6.4] - 2021-08-18
~~~~~~~~~~~~~~~~~~~~
* Remove verified name is_verified from DB

[0.6.3] - 2021-08-18
~~~~~~~~~~~~~~~~~~~~
* Update admin for verified name status
Expand Down
2 changes: 1 addition & 1 deletion edx_name_affirmation/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
Django app housing name affirmation logic.
"""

__version__ = '0.6.3'
__version__ = '0.6.4'

default_app_config = 'edx_name_affirmation.apps.EdxNameAffirmationConfig' # pylint: disable=invalid-name
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Generated by Django 2.2.24 on 2021-08-18 10:27

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('edx_name_affirmation', '0004_auto_20210816_0958'),
]

operations = [
migrations.RemoveField(
model_name='verifiedname',
name='is_verified',
),
]

0 comments on commit 17387ea

Please sign in to comment.