blob: 37a197d41f51507216bfc22adf83cf15cc59fa4e [file] [log] [blame]
Sapan Bhatia16a49902014-11-11 23:19:22 -05001# -*- coding: utf-8 -*-
2from __future__ import unicode_literals
3
4from django.db import models, migrations
5
6
7class Migration(migrations.Migration):
8
9 dependencies = [
10 ('core', '0005_auto_20141111_2311'),
11 ]
12
13 operations = [
14 migrations.DeleteModel(
15 name='ImageDeployments',
16 ),
17 migrations.DeleteModel(
18 name='SiteDeployments',
19 ),
20 migrations.DeleteModel(
21 name='SliceDeployments',
22 ),
23 migrations.DeleteModel(
24 name='UserDeployments',
25 ),
26 ]