diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2d90cf9..4801606 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -75,10 +75,6 @@ jobs: image: rabbitmq:latest ports: - 5672:5672 - redis: - image: redis:latest - ports: - - 6379:6379 minio: # This image does not require any command arguments (which GitHub Actions don't support) image: bitnami/minio:latest diff --git a/bats_ai/core/migrations/0002_species.py b/bats_ai/core/migrations/0002_species.py new file mode 100644 index 0000000..9d85c5c --- /dev/null +++ b/bats_ai/core/migrations/0002_species.py @@ -0,0 +1,25 @@ +# Generated by Django 4.1.13 on 2024-01-04 15:27 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('core', '0001_initial'), + ] + + operations = [ + migrations.CreateModel( + name='Species', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('species_code', models.CharField(blank=True, max_length=10, null=True)), + ('family', models.CharField(blank=True, max_length=50, null=True)), + ('genus', models.CharField(blank=True, max_length=50, null=True)), + ('species', models.CharField(blank=True, max_length=100, null=True)), + ('common_name', models.CharField(blank=True, max_length=100, null=True)), + ('species_code_6', models.CharField(blank=True, max_length=10, null=True)), + ], + ), + ]