Skip to content

Commit

Permalink
ENT-1289 | Adding migration file to remove EnterpriseCustomerEntitlme…
Browse files Browse the repository at this point in the history
…nts from table schema (#593)
  • Loading branch information
christopappas authored Oct 15, 2019
1 parent 6aca91f commit 84f5f5b
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ Change Log
Unreleased
----------

[2.0.5] - 2019-10-15
---------------------

* Adding migration file to remove EnterpriseCustomerEntitlement from table schema

[2.0.4] - 2019-10-10
--------------------

Expand Down
2 changes: 1 addition & 1 deletion enterprise/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

from __future__ import absolute_import, unicode_literals

__version__ = "2.0.4"
__version__ = "2.0.5"

default_app_config = "enterprise.apps.EnterpriseConfig" # pylint: disable=invalid-name
33 changes: 33 additions & 0 deletions enterprise/migrations/0077_auto_20191002_1529.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.24 on 2019-10-02 20:29
from __future__ import unicode_literals

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('enterprise', '0076_auto_20190918_2037'),
]

operations = [
migrations.RemoveField(
model_name='enterprisecustomerentitlement',
name='enterprise_customer',
),
migrations.RemoveField(
model_name='historicalenterprisecustomerentitlement',
name='enterprise_customer',
),
migrations.RemoveField(
model_name='historicalenterprisecustomerentitlement',
name='history_user',
),
migrations.DeleteModel(
name='EnterpriseCustomerEntitlement',
),
migrations.DeleteModel(
name='HistoricalEnterpriseCustomerEntitlement',
),
]

0 comments on commit 84f5f5b

Please sign in to comment.