Skip to content

Commit

Permalink
Add migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
miedzinski committed Apr 25, 2024
1 parent d97a030 commit 188f3c6
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/ralph/assets/migrations/0035_auto_20240425_1059.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models
import ralph.lib.mixins.fields


class Migration(migrations.Migration):

dependencies = [
('assets', '0034_auto_20240304_1511'),
]

operations = [
migrations.AlterField(
model_name='asset',
name='hostname',
field=ralph.lib.mixins.fields.NullableCharFieldWithAutoStrip(verbose_name='hostname', max_length=255, blank=True, null=True, db_index=True, default=None),
),
]
19 changes: 19 additions & 0 deletions src/ralph/virtual/migrations/0014_auto_20240425_1059.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('virtual', '0013_auto_20190625_1239'),
]

operations = [
migrations.AlterField(
model_name='cloudhost',
name='hostname',
field=models.CharField(verbose_name='hostname', max_length=255, db_index=True),
),
]

0 comments on commit 188f3c6

Please sign in to comment.