-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ENT-1289 | Adding migration file to remove EnterpriseCustomerEntitlme…
…nts from table schema (#593)
- Loading branch information
1 parent
6aca91f
commit 84f5f5b
Showing
3 changed files
with
39 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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', | ||
), | ||
] |