mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-10 06:04:15 +00:00
83c2530df4
* Add option for adding custom CSS * add missing migration
18 lines
404 B
Python
18 lines
404 B
Python
# Generated by Django 5.0.2 on 2024-03-16 23:05
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("bookmarks", "0025_userprofile_search_preferences"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="userprofile",
|
|
name="custom_css",
|
|
field=models.TextField(blank=True),
|
|
),
|
|
]
|