1
0
Fork 0

Adds favorit handling

This commit is contained in:
Mouse Reeve 2020-02-19 00:13:06 -08:00
parent 27b9326dd9
commit a664ad3328
10 changed files with 59 additions and 8 deletions

View file

@ -1,4 +1,4 @@
# Generated by Django 3.0.3 on 2020-02-19 07:25
# Generated by Django 3.0.3 on 2020-02-19 08:04
from django.conf import settings
from django.db import migrations, models
@ -18,7 +18,6 @@ class Migration(migrations.Migration):
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('content', models.TextField(blank=True, null=True)),
('created_date', models.DateTimeField(auto_now_add=True)),
('relationship_id', models.CharField(max_length=100)),
('status', models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, to='fedireads.Status')),
('user', models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, to=settings.AUTH_USER_MODEL)),
],