mirror of
https://github.com/ansible/awx.git
synced 2024-10-29 20:55:32 +03:00
migration with correct help_text
This commit is contained in:
parent
2f00260f47
commit
67d1aa6c86
@ -16,10 +16,10 @@ class Migration(migrations.Migration):
|
||||
name='Fact',
|
||||
fields=[
|
||||
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
|
||||
('timestamp', models.DateTimeField(default=None, editable=False)),
|
||||
('timestamp', models.DateTimeField(default=None, help_text='Date and time of the corresponding fact scan gathering time.', editable=False)),
|
||||
('module', models.CharField(max_length=128)),
|
||||
('facts', jsonbfield.fields.JSONField(default={}, blank=True)),
|
||||
('host', models.ForeignKey(related_name='facts', to='main.Host')),
|
||||
('facts', jsonbfield.fields.JSONField(default={}, help_text='Arbitrary JSON structure of module facts captured at timestamp for a single host.', blank=True)),
|
||||
('host', models.ForeignKey(related_name='facts', to='main.Host', help_text='Host for the facts that the fact scan captured.')),
|
||||
],
|
||||
),
|
||||
migrations.AlterIndexTogether(
|
||||
|
Loading…
Reference in New Issue
Block a user