mirror of
https://github.com/ansible/awx.git
synced 2026-05-14 21:07:39 -02:30
migration with correct help_text
This commit is contained in:
@@ -16,10 +16,10 @@ class Migration(migrations.Migration):
|
|||||||
name='Fact',
|
name='Fact',
|
||||||
fields=[
|
fields=[
|
||||||
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
|
('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)),
|
('module', models.CharField(max_length=128)),
|
||||||
('facts', jsonbfield.fields.JSONField(default={}, blank=True)),
|
('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')),
|
('host', models.ForeignKey(related_name='facts', to='main.Host', help_text='Host for the facts that the fact scan captured.')),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
migrations.AlterIndexTogether(
|
migrations.AlterIndexTogether(
|
||||||
|
|||||||
Reference in New Issue
Block a user