22 lines
626 B
Python
22 lines
626 B
Python
# Generated by Django 2.0.6 on 2019-10-10 09:52
|
|
|
|
from django.conf import settings
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('notes', '0001_initial'),
|
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
|
('books', '0014_auto_20190912_1228'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='contentblock',
|
|
name='bookmarks',
|
|
field=models.ManyToManyField(related_name='bookmarked_content_blocks', through='notes.ContentBlockBookmark', to=settings.AUTH_USER_MODEL),
|
|
),
|
|
]
|