AudioCollection to import job and track file creation

This commit is contained in:
Eliot Berriot 2018-04-05 23:26:41 +02:00
commit 363acca53d
No known key found for this signature in database
GPG key ID: DD6965E2476E5C27
4 changed files with 114 additions and 2 deletions

View file

@ -0,0 +1,18 @@
# Generated by Django 2.0.3 on 2018-04-05 16:35
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('federation', '0004_followrequest'),
]
operations = [
migrations.AddField(
model_name='actor',
name='followers',
field=models.ManyToManyField(related_name='following', through='federation.Follow', to='federation.Actor'),
),
]