mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-22 19:33:05 +00:00
19 lines
413 B
Python
19 lines
413 B
Python
|
# Generated by Django 4.1 on 2023-01-07 23:42
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('bookmarks', '0017_userprofile_enable_sharing'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='bookmark',
|
||
|
name='favicon_file',
|
||
|
field=models.CharField(blank=True, max_length=512),
|
||
|
),
|
||
|
]
|