You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
('name', models.CharField(help_text='Name of the item.', max_length=100)),
17
+
('desc', models.TextField(help_text='Description of the game content item. Markdown.')),
18
+
('key', models.CharField(help_text="Unique key for the condition concept (e.g., 'invisible').", max_length=100, primary_key=True, serialize=False)),
19
+
('conditions', models.ManyToManyField(help_text='All condition implementations that are equivalent to this concept.', related_name='concepts', to='api_v2.condition')),
0 commit comments