From a8f4807f96f3a725010e14873dd4137ad51ab033 Mon Sep 17 00:00:00 2001 From: "shashank.rao" Date: Thu, 14 Dec 2017 17:36:04 +0530 Subject: [PATCH] Removed migrations --- health_check/__init__.py | 2 +- health_check/db/migrations/0001_initial.py | 30 ---------------------- health_check/db/models.py | 9 ------- 3 files changed, 1 insertion(+), 40 deletions(-) delete mode 100644 health_check/db/migrations/0001_initial.py delete mode 100644 health_check/db/models.py diff --git a/health_check/__init__.py b/health_check/__init__.py index fc132e3..7dffc8f 100644 --- a/health_check/__init__.py +++ b/health_check/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # Used by setup.py, so minimize top-level imports. -VERSION = (2, 5, 0) +VERSION = (2, 5, 1) __version__ = ".".join(str(i) for i in VERSION) diff --git a/health_check/db/migrations/0001_initial.py b/health_check/db/migrations/0001_initial.py deleted file mode 100644 index 9a9a26b..0000000 --- a/health_check/db/migrations/0001_initial.py +++ /dev/null @@ -1,30 +0,0 @@ -# -*- coding: utf-8 -*- -# Generated by Django 1.10.1 on 2016-09-26 18:46 -from __future__ import unicode_literals - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - initial = True - - replaces = [ - ('health_check_db', '0001_initial'), - ] - - dependencies = [ - ] - - operations = [ - migrations.CreateModel( - name='TestModel', - fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('title', models.CharField(max_length=128)), - ], - options={ - 'db_table': 'health_check_db_testmodel', - }, - ), - ] diff --git a/health_check/db/models.py b/health_check/db/models.py deleted file mode 100644 index 93cbac8..0000000 --- a/health_check/db/models.py +++ /dev/null @@ -1,9 +0,0 @@ -# -*- coding: utf-8 -*- -from django.db import models - - -class TestModel(models.Model): - title = models.CharField(max_length=128) - - class Meta: - db_table = 'health_check_db_testmodel'