Skip to content
Snippets Groups Projects
Commit 439ebe3b authored by Ernesto Rico Schmidt's avatar Ernesto Rico Schmidt
Browse files

Migrate LinkType model

parent 2ecf65fe
No related branches found
No related tags found
No related merge requests found
# Generated by Django 3.2.15 on 2022-10-02 21:26
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("program", "0039_auto_20221002_2307"),
]
operations = [
migrations.CreateModel(
name="LinkType",
fields=[
(
"id",
models.AutoField(
auto_created=True, primary_key=True, serialize=False, verbose_name="ID"
),
),
("name", models.CharField(help_text="Name of the link type", max_length=16)),
("type", models.CharField(help_text="Type of the link", max_length=32)),
],
options={
"ordering": ("name",),
},
),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment