mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-10 06:04:15 +00:00
e497bcb5c0
* #24 Implement readonly bookmark API * #24 Implement create/update bookmark API * #24 Fix title, description not allowing blank values * #24 Code cleanup * #24 Add modification dates to response * #24 Add API docs * #24 Implement delete bookmark API * #24 Fix API docs link * #24 Fix API docs link * #24 Implement tag API Co-authored-by: Sascha Ißbrücker <sissbruecker@lyska.io>
23 lines
560 B
Python
23 lines
560 B
Python
# Generated by Django 2.2.13 on 2020-09-26 10:28
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('bookmarks', '0003_auto_20200913_0656'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='bookmark',
|
|
name='description',
|
|
field=models.TextField(blank=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='bookmark',
|
|
name='title',
|
|
field=models.CharField(blank=True, max_length=512),
|
|
),
|
|
]
|