Advertisement
Guest User

Untitled

a guest
Jan 16th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.22 KB | None | 0 0
  1. from settings import *
  2.  
  3. class DisableMigrations(object):
  4.     def __contains__(self, item):
  5.         return True
  6.  
  7.     def __getitem__(self, item):
  8.         return 'notmigrations'
  9.  
  10. MIGRATION_MODULES = DisableMigrations()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement