mirror of
https://github.com/ansible/awx.git
synced 2026-03-13 15:09:32 -02:30
add index for jobevent created
This commit is contained in:
25
awx/main/migrations/0068_v350_index_event_created.py
Normal file
25
awx/main/migrations/0068_v350_index_event_created.py
Normal file
@@ -0,0 +1,25 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11.16 on 2019-04-03 05:24
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('main', '0067_v350_credential_plugins'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='jobevent',
|
||||
name='created',
|
||||
field=models.DateTimeField(db_index=True, default=None, editable=False, null=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='projectupdateevent',
|
||||
name='created',
|
||||
field=models.DateTimeField(db_index=True, default=None, editable=False, null=True),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user