Skip to content

Commit

Permalink
migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
lakshmi2506 committed Feb 2, 2024
1 parent a839ca0 commit 795abba
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 3 deletions.
6 changes: 3 additions & 3 deletions metecho/api/migrations/0118_project_deleted_at.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
class Migration(migrations.Migration):

dependencies = [
('api', '0117_scratchorg_installed_packages'),
("api", "0117_scratchorg_installed_packages"),
]

operations = [
migrations.AddField(
model_name='project',
name='deleted_at',
model_name="project",
name="deleted_at",
field=models.DateTimeField(blank=True, null=True),
),
]
23 changes: 23 additions & 0 deletions metecho/api/migrations/0119_scratchorg_non_source_changes.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by Django 4.0.6 on 2024-01-31 13:15

import django.core.serializers.json
from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("api", "0118_project_deleted_at"),
]

operations = [
migrations.AddField(
model_name="scratchorg",
name="non_source_changes",
field=models.JSONField(
blank=True,
default=dict,
encoder=django.core.serializers.json.DjangoJSONEncoder,
),
),
]

0 comments on commit 795abba

Please sign in to comment.