34 lines
1 KiB
Python
34 lines
1 KiB
Python
# Generated by Django 3.0 on 2020-02-16 12:47
|
|
|
|
from django.db import migrations, models
|
|
import translatable_fields.models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = []
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name="Species",
|
|
fields=[
|
|
(
|
|
"id",
|
|
models.AutoField(
|
|
auto_created=True,
|
|
primary_key=True,
|
|
serialize=False,
|
|
verbose_name="ID",
|
|
),
|
|
),
|
|
("name", translatable_fields.models.TranslatableField()),
|
|
("scientific_name", models.CharField(max_length=255)),
|
|
("genera", models.CharField(max_length=255)),
|
|
("familia", models.CharField(max_length=255)),
|
|
("ordo", models.CharField(max_length=255)),
|
|
("classis", models.CharField(max_length=255)),
|
|
],
|
|
)
|
|
]
|