trash models added, first attempt for remainign issues
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
# Generated by Django 5.2.10 on 2026-01-12 13:36
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('writer', '0016_images_unique_position_constraint'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='ContentTrash',
|
||||
fields=[
|
||||
],
|
||||
options={
|
||||
'verbose_name': 'Content (Trash)',
|
||||
'verbose_name_plural': 'Content (Trash)',
|
||||
'proxy': True,
|
||||
'indexes': [],
|
||||
'constraints': [],
|
||||
},
|
||||
bases=('writer.content',),
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='ImagesTrash',
|
||||
fields=[
|
||||
],
|
||||
options={
|
||||
'verbose_name': 'Image (Trash)',
|
||||
'verbose_name_plural': 'Images (Trash)',
|
||||
'proxy': True,
|
||||
'indexes': [],
|
||||
'constraints': [],
|
||||
},
|
||||
bases=('writer.images',),
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='TasksTrash',
|
||||
fields=[
|
||||
],
|
||||
options={
|
||||
'verbose_name': 'Task (Trash)',
|
||||
'verbose_name_plural': 'Tasks (Trash)',
|
||||
'proxy': True,
|
||||
'indexes': [],
|
||||
'constraints': [],
|
||||
},
|
||||
bases=('writer.tasks',),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user