0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-28 18:26:15 +01:00
posthog/ee/migrations/0003_license_max_users.py
Michael Matloka 5d2ad6c7bb
chore(deps): Update black to 22.8.0 (#11596)
* chore(deps): Update `black` to `22.8.0`

* Format
2022-09-05 14:38:54 +02:00

19 lines
383 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),
),
]