-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add page views metadata (#557)
- Loading branch information
Showing
3 changed files
with
91 additions
and
2 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
bd_api/apps/api/v1/migrations/0027_dataset_page_views_table_page_views.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,28 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 4.2.6 on 2024-02-04 16:08 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("v1", "0026_alter_table_source_bucket_name"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="dataset", | ||
name="page_views", | ||
field=models.BigIntegerField( | ||
default=0, help_text="Number of page views by Google Analytics" | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="table", | ||
name="page_views", | ||
field=models.BigIntegerField( | ||
default=0, help_text="Number of page views by Google Analytics" | ||
), | ||
), | ||
] |
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
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