0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-22 08:40:03 +01:00
posthog/ee/migrations/0001_initial.py

24 lines
671 B
Python
Raw Normal View History

# Generated by Django 3.0.7 on 2020-08-07 09:15
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = []
operations = [
migrations.CreateModel(
name="License",
fields=[
("id", models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name="ID")),
("created_at", models.DateTimeField(auto_now_add=True)),
("plan", models.CharField(max_length=200)),
("valid_until", models.DateTimeField()),
("key", models.CharField(max_length=200)),
],
),
]