mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-21 21:49:51 +01:00
5513be7731
* Upgraded Ruff linter * Formatted whole codebase with new ruff rules * Revert import removal * Fixed mypi issues or added ignores * Fixed schema formatting * Fixed hogvm failing tests * Remove duplicate key in list
23 lines
627 B
Python
23 lines
627 B
Python
# Generated by Django 3.2.5 on 2022-02-15 20:45
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("ee", "0007_dashboard_permissions"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="enterpriseeventdefinition",
|
|
name="description",
|
|
field=models.TextField(blank=True, default="", null=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name="enterprisepropertydefinition",
|
|
name="description",
|
|
field=models.TextField(blank=True, default="", null=True),
|
|
),
|
|
]
|