-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Closes #18658: Add start on boot field to VirtualMachine model #20751
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
75f9959
8dc76b7
a21894d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| # Generated by Django 5.2.7 on 2025-11-05 13:36 | ||
|
|
||
| from django.db import migrations, models | ||
|
|
||
|
|
||
| class Migration(migrations.Migration): | ||
|
|
||
| dependencies = [ | ||
| ('virtualization', '0049_owner'), | ||
| ] | ||
|
|
||
| operations = [ | ||
| migrations.AddField( | ||
| model_name='virtualmachine', | ||
| name='start_on_boot', | ||
| field=models.CharField(default='off', max_length=32), | ||
| ), | ||
| ] |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| # Generated by Django 5.2.7 on 2025-11-05 13:45 | ||
|
||
|
|
||
| from django.db import migrations, models | ||
|
|
||
|
|
||
| class Migration(migrations.Migration): | ||
|
|
||
| dependencies = [ | ||
| ('virtualization', '0050_virtualmachine_start_on_boot'), | ||
| ] | ||
|
|
||
| operations = [ | ||
| migrations.AlterField( | ||
| model_name='virtualmachine', | ||
| name='start_on_boot', | ||
| field=models.CharField(blank=True, default='off', max_length=32, null=True), | ||
| ), | ||
| ] | ||
Uh oh!
There was an error while loading. Please reload this page.