mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-13 23:27:16 +00:00
19 lines
408 B
Python
19 lines
408 B
Python
|
# Generated by Django 5.1.1 on 2024-09-28 08:03
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
("bookmarks", "0041_merge_metadata"),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name="userprofile",
|
||
|
name="custom_css_hash",
|
||
|
field=models.CharField(blank=True, max_length=32),
|
||
|
),
|
||
|
]
|