mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-22 19:33:05 +00:00
19 lines
403 B
Python
19 lines
403 B
Python
|
# Generated by Django 4.1.7 on 2023-05-18 07:58
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('bookmarks', '0020_userprofile_tag_search'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='userprofile',
|
||
|
name='display_url',
|
||
|
field=models.BooleanField(default=False),
|
||
|
),
|
||
|
]
|