Skip to content

Commit

Permalink
Add missed data migration
Browse files Browse the repository at this point in the history
  • Loading branch information
asmorodskyi committed Jun 16, 2023
1 parent c19917b commit d42c34e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions ocw/migrations/0011_alter_instance_provider.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.0.10 on 2023-06-16 11:00

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('ocw', '0010_remove_instance_csp_info'),
]

operations = [
migrations.AlterField(
model_name='instance',
name='provider',
field=models.CharField(choices=[('GCE', 'Google'), ('EC2', 'EC2'), ('AZURE', 'Azure'), ('OSTACK', 'Openstack')], max_length=8),
),
]

0 comments on commit d42c34e

Please sign in to comment.