mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 08:40:03 +01:00
1eeed28751
* 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>
26 lines
702 B
Python
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)),
|
|
],
|
|
),
|
|
]
|