File: 0002_swappable_hook_model.py

package info (click to toggle)
python-django-rest-hooks 1.6.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 292 kB
  • sloc: python: 802; sh: 6; makefile: 5
file content (18 lines) | stat: -rw-r--r-- 361 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# -*- coding: utf-8 -*-
from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('rest_hooks', '0001_initial'),
    ]

    operations = [
        migrations.AlterModelOptions(
            name='Hook',
            options={
                'swappable': 'HOOK_CUSTOM_MODEL',
            },
        ),
    ]