Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save hodgestar/d57213e51cc22c399996 to your computer and use it in GitHub Desktop.
Save hodgestar/d57213e51cc22c399996 to your computer and use it in GitHub Desktop.
Wafer view_all_talks migration.
# -*- 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