Basically a fork from https://github.com/blochberger/sokman but with the intention of adding a visual interface as well
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
442 B
19 lines
442 B
# Generated by Django 3.1.7 on 2021-03-11 10:26
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('sok', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='publication',
|
|
name='cite_key',
|
|
field=models.CharField(default=None, max_length=255, unique=True),
|
|
preserve_default=False,
|
|
),
|
|
]
|
|
|