Guest User

Migrations code

a guest
Dec 31st, 2015
9
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.35 KB | None | 0 0
  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3.  
  4. from django.db import models, migrations
  5.  
  6.  
  7. class Migration(migrations.Migration):
  8.  
  9.     dependencies = [
  10.         ('webapps', '0005_iarccert'),
  11.     ]
  12.  
  13.     operations = [
  14.         migrations.RemoveField(
  15.             model_name='preview',
  16.             name='thumbtype',
  17.         ),
  18.     ]
Add Comment
Please, Sign In to add comment