mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-21 21:49:51 +01:00
9576fab1e4
* Add Pyupgrade rules * Set correct Python version
32 lines
855 B
Python
32 lines
855 B
Python
# 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: list = []
|
|
|
|
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)),
|
|
],
|
|
),
|
|
]
|