Skip to content
Snippets Groups Projects
Commit abf77b1a authored by Diana Huang's avatar Diana Huang
Browse files

Drop notes tables.

parent 84ccc9b4
Branches
Tags
No related merge requests found
......@@ -223,7 +223,6 @@ class MigrationTests(TestCase):
Tests for migrations.
"""
@unittest.skip("Migration will delete the Note model. Need to ship not referencing it first. DEPR-18.")
@override_settings(MIGRATION_MODULES={})
def test_migrations_are_in_sync(self):
"""
......
# -*- coding: utf-8 -*-
# Generated by Django 1.11.25 on 2019-10-01 18:23
from __future__ import unicode_literals
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('notes', '0001_initial'),
]
operations = [
migrations.RemoveField(
model_name='note',
name='user',
),
migrations.DeleteModel(
name='Note',
),
]
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment