File: 0012_delete_legacybook.py

package info (click to toggle)
python-django-import-export 4.3.5-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,300 kB
  • sloc: python: 11,650; makefile: 180; sh: 63; javascript: 50
file content (15 lines) | stat: -rw-r--r-- 327 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Generated by Django 4.2.3 on 2023-09-15 08:20

from django.db import migrations


class Migration(migrations.Migration):
    dependencies = [
        ("core", "0011_uuidcategory_legacybook_alter_uuidbook_id_and_more"),
    ]

    operations = [
        migrations.DeleteModel(
            name="LegacyBook",
        ),
    ]