Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove tcms.core.migrations.0001_django_comments__object_pk #157

Merged
merged 1 commit into from Apr 10, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
20 changes: 5 additions & 15 deletions tcms/core/migrations/0001_django_comments__object_pk.py
@@ -1,19 +1,9 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models
from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('django_comments', '__latest__'),
]

operations = [
migrations.AlterField('comment', 'object_pk', models.IntegerField())
]

def __init__(self, name, app_label):
super(Migration, self).__init__(name, app_label)
self.app_label = 'django_comments'
"""
Empty migration. Removed in #157.
"""
pass
1 change: 1 addition & 0 deletions tcms/core/migrations/0002_add_initial_data.py
Expand Up @@ -27,6 +27,7 @@ class Migration(migrations.Migration):

dependencies = [
('core', '0001_django_comments__object_pk'),
('sites', '__latest__'),
]

operations = [
Expand Down