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
Marius Andra 1eeed28751
Fix Master EE code (#1701)
* add test runner to ease pycharm dev

* fix broken import

* drop and recreate the clickhouse test db before running tests

* fix person uuid str json serialization issue

* make kafka optional in tests

* fix inits

* remove need for kafka in person.py

* fix a bunch of mypy errors

* fix function and add process_event to pipeline

* fixed missing params and tests

* change uuid and fix types

* types

* optimize for merge prop test

* make ClickhouseProducer to produce to clickhouse one way or another

* annotate types

Co-authored-by: Eric <eeoneric@gmail.com>
Co-authored-by: James Greenhill <fuziontech@gmail.com>
2020-09-24 06:14:17 -04:00

26 lines
702 B
Python

# Generated by Django 3.0.7 on 2020-08-07 09:15
from typing import List
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)),
],
),
]