Files
enviPy-bayer/bayer/migrations/0004_pescompound_pesstructure.py
Tim Lorsbach d1a00f71b4 wip
2026-04-17 19:39:54 +02:00

36 lines
1.2 KiB
Python

# Generated by Django 6.0.3 on 2026-04-15 20:03
import django.db.models.deletion
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('bayer', '0003_package_data_pool'),
('epdb', '0023_alter_compoundstructure_options_and_more'),
]
operations = [
migrations.CreateModel(
name='PESCompound',
fields=[
('compound_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='epdb.compound')),
],
options={
'abstract': False,
},
bases=('epdb.compound',),
),
migrations.CreateModel(
name='PESStructure',
fields=[
('compoundstructure_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='epdb.compoundstructure')),
],
options={
'abstract': False,
},
bases=('epdb.compoundstructure',),
),
]