Created
June 13, 2015 20:04
-
-
Save hodgestar/d57213e51cc22c399996 to your computer and use it in GitHub Desktop.
Wafer view_all_talks migration.
This file contains hidden or 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
# -*- coding: utf-8 -*- | |
from __future__ import unicode_literals | |
from django.db import models, migrations | |
class Migration(migrations.Migration): | |
dependencies = [ | |
('talks', '0001_initial'), | |
] | |
operations = [ | |
migrations.AlterModelOptions( | |
name='talk', | |
options={'permissions': (('view_all_talks', 'Can see all talks'),)}, | |
), | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment