mirror of
https://github.com/retspen/webvirtcloud
synced 2025-02-19 02:45:18 +00:00
19 lines
457 B
Python
19 lines
457 B
Python
|
from django.db import migrations, models
|
||
|
import datetime
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('instances', '0002_instance_is_template'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='instance',
|
||
|
name='created',
|
||
|
field=models.DateField(default=datetime.datetime(2017, 10, 26, 8, 5, 55, 797326), auto_now_add=True),
|
||
|
preserve_default=False,
|
||
|
),
|
||
|
]
|