FOSSDB/FOSSDB_web/apps/license/migrations/0001_initial.py
2023-04-08 13:16:38 +03:00

25 lines
722 B
Python

# Generated by Django 4.1.7 on 2023-04-08 10:14
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='License',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('short_name', models.CharField(max_length=50)),
('full_name', models.CharField(blank=True, max_length=100, null=True)),
('url', models.URLField(blank=True, null=True)),
('description', models.TextField(blank=True, null=True)),
],
),
]