forked from PostHog/posthog
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(data-warehouse): Adds an updated_at field to warehouse models (P…
…ostHog#23945) Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
81ed316
commit da7cc9c
Showing
8 changed files
with
96 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
posthog/migrations/0451_datawarehousetable_updated_at_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Generated by Django 4.2.14 on 2024-07-24 11:20 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("posthog", "0450_externaldataschema_sync_frequency_interval_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="datawarehousetable", | ||
name="updated_at", | ||
field=models.DateTimeField(auto_now=True, null=True, blank=True), | ||
), | ||
migrations.AddField( | ||
model_name="externaldatajob", | ||
name="updated_at", | ||
field=models.DateTimeField(auto_now=True, null=True, blank=True), | ||
), | ||
migrations.AddField( | ||
model_name="externaldataschema", | ||
name="updated_at", | ||
field=models.DateTimeField(auto_now=True, null=True, blank=True), | ||
), | ||
migrations.AddField( | ||
model_name="externaldatasource", | ||
name="updated_at", | ||
field=models.DateTimeField(auto_now=True, null=True, blank=True), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.