Skip to content
This repository has been archived by the owner on Jul 25, 2022. It is now read-only.

Commit

Permalink
Redo the migration
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Pankov <work@michaelpankov.com>
  • Loading branch information
mkpankov committed Aug 14, 2020
1 parent ff0faa9 commit ce45e08
Showing 1 changed file with 24 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.23 on 2020-08-13 09:38
# Generated by Django 1.11.23 on 2020-08-14 09:30
from __future__ import unicode_literals

from django.db import migrations, models
Expand Down Expand Up @@ -27,8 +27,29 @@ class Migration(migrations.Migration):
to="chroma_core.Job",
),
),
("host_ids", models.CharField(max_length=512)),
("fsname", models.CharField(max_length=512)),
("fqdn", models.CharField(max_length=256)),
("fsname", models.CharField(max_length=8)),
("name", models.CharField(max_length=512)),
],
options={"ordering": ["id"],},
bases=("chroma_core.job",),
),
migrations.CreateModel(
name="UnmountSnapshotJob",
fields=[
(
"job_ptr",
models.OneToOneField(
auto_created=True,
on_delete=django.db.models.deletion.CASCADE,
parent_link=True,
primary_key=True,
serialize=False,
to="chroma_core.Job",
),
),
("fqdn", models.CharField(max_length=256)),
("fsname", models.CharField(max_length=8)),
("name", models.CharField(max_length=512)),
],
options={"ordering": ["id"],},
Expand Down

0 comments on commit ce45e08

Please sign in to comment.