fix: remove sso history model

This commit is contained in:
ansabgillani
2022-04-27 21:40:19 +05:00
committed by Ansab Gillani
parent 98262c088d
commit 55df11b489
2 changed files with 16 additions and 4 deletions

View File

@@ -0,0 +1,16 @@
# Generated by Django 3.2.13 on 2022-04-27 16:39
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('third_party_auth', '0009_historicalusersocialauth'),
]
operations = [
migrations.DeleteModel(
name='HistoricalUserSocialAuth',
),
]

View File

@@ -1,7 +1,6 @@
"""Tests for util.db module."""
from io import StringIO
import unittest
import ddt
from django.core.management import call_command
@@ -122,9 +121,6 @@ class MigrationTests(TestCase):
"""
@override_settings(MIGRATION_MODULES={})
@unittest.skip(
"Temporary skip for https://openedx.atlassian.net/browse/PROD-2423 where a column is to be removed"
)
def test_migrations_are_in_sync(self):
"""
Tests that the migration files are in sync with the models.