kopia lustrzana https://dev.funkwhale.audio/funkwhale/funkwhale
31 wiersze
1.2 KiB
Python
31 wiersze
1.2 KiB
Python
|
# Generated by Django 2.2.4 on 2019-08-29 09:08
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
import django.db.models.deletion
|
||
|
import django.utils.timezone
|
||
|
import uuid
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('federation', '0020_auto_20190730_0846'),
|
||
|
('contenttypes', '0002_remove_content_type_name'),
|
||
|
('moderation', '0003_report'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='Note',
|
||
|
fields=[
|
||
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||
|
('uuid', models.UUIDField(default=uuid.uuid4, unique=True)),
|
||
|
('creation_date', models.DateTimeField(default=django.utils.timezone.now)),
|
||
|
('summary', models.TextField(max_length=50000)),
|
||
|
('target_id', models.IntegerField(null=True)),
|
||
|
('author', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='moderation_notes', to='federation.Actor')),
|
||
|
('target_content_type', models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, to='contenttypes.ContentType')),
|
||
|
],
|
||
|
),
|
||
|
]
|