Skip to content
This repository has been archived by the owner on Jan 13, 2022. It is now read-only.

Commit

Permalink
Add migration to delete Subscriber table.
Browse files Browse the repository at this point in the history
  • Loading branch information
pmac committed Aug 10, 2015
1 parent a1642c0 commit 7caf658
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions news/migrations/0002_delete_subscriber.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import models, migrations


class Migration(migrations.Migration):

dependencies = [
('news', '0001_initial'),
]

operations = [
migrations.DeleteModel(
name='Subscriber',
),
]

0 comments on commit 7caf658

Please sign in to comment.