mirror of
https://github.com/PostHog/posthog.git
synced 2024-12-01 04:12:23 +01:00
8a629179a9
* Update only models * Bring in line with master and use uuid1_macless * Update models and annotation scope support * Delete test_team_model.py * Update user creation, team retrieval and fix tests * Make fixes * Rename migration * Fix migrating from master * Bring back previous company_name max_length * Use get_price_id() * Temporarily disable team member deletion * Update user joining and leaving, and billing * Improve first_name handling * Update warning * Update TestTeamUser * Fix migration * Update 0085_org_models.py * Improve bootstrapping * Move multitenancy price tests to posthog-production * Update team_user.py * Update setup_review.py * Enhance opt_slash_path * Update team.py * Fix default test email * Fix typing
6 lines
120 B
Python
6 lines
120 B
Python
from posthog.models.utils import uuid1_macless
|
|
|
|
|
|
def generate_clickhouse_uuid() -> str:
|
|
return str(uuid1_macless())
|