0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-22 08:40:03 +01:00
posthog/ee/migrations/0003_license_max_users.py
Tom Owers 5513be7731
chore: upgraded Ruff linter (#18188)
* 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
2023-10-26 12:38:15 +02:00

18 lines
382 B
Python

# Generated by Django 3.0.11 on 2021-04-14 00:20
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("ee", "0002_hook"),
]
operations = [
migrations.AddField(
model_name="license",
name="max_users",
field=models.IntegerField(default=None, null=True),
),
]