Skip to content

Commit

Permalink
🚚 Migrate to 1.0a2
Browse files Browse the repository at this point in the history
  • Loading branch information
falexwolf committed Jan 11, 2025
1 parent 0b5b9e9 commit 52da4a9
Showing 1 changed file with 48 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# Generated by Django 5.2 on 2025-01-11 16:44

import django.db.models.deletion
import lamindb.base.fields
from django.db import migrations


class Migration(migrations.Migration):
dependencies = [
("lamindb", "0072_remove_user__branch_code_remove_user_aux_and_more"),
("ourprojects", "0002_lamindbv1"),
]

operations = [
migrations.AlterField(
model_name="person",
name="space",
field=lamindb.base.fields.ForeignKey(
blank=True,
db_default=1,
default=1,
on_delete=django.db.models.deletion.PROTECT,
to="lamindb.space",
),
),
migrations.AlterField(
model_name="project",
name="space",
field=lamindb.base.fields.ForeignKey(
blank=True,
db_default=1,
default=1,
on_delete=django.db.models.deletion.PROTECT,
to="lamindb.space",
),
),
migrations.AlterField(
model_name="reference",
name="space",
field=lamindb.base.fields.ForeignKey(
blank=True,
db_default=1,
default=1,
on_delete=django.db.models.deletion.PROTECT,
to="lamindb.space",
),
),
]

0 comments on commit 52da4a9

Please sign in to comment.