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
Tim Glaser 5cfbc49cc3
Add clickhouse and max users to license (#3918)
Co-authored-by: Paolo D'Amico <paolodamico@users.noreply.github.com>
2021-04-14 08:45:39 -07:00

17 lines
359 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),
),
]