Skip to content

Commit

Permalink
fix: large counts, exact names
Browse files Browse the repository at this point in the history
  • Loading branch information
aaxelb committed Sep 9, 2024
1 parent a075422 commit 2c38b1a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions osf/metrics/reports.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,8 +236,8 @@ class InstitutionalUserReport(MonthlyReport):
institution_id = metrics.Keyword()
# user info:
user_id = metrics.Keyword()
user_name = metrics.Text()
department_name = metrics.Text()
user_name = metrics.Keyword()
department_name = metrics.Keyword()
month_last_login = YearmonthField()
account_creation_date = YearmonthField()
orcid_id = metrics.Keyword()
Expand All @@ -247,5 +247,5 @@ class InstitutionalUserReport(MonthlyReport):
public_registration_count = metrics.Integer()
embargoed_registration_count = metrics.Integer()
published_preprint_count = metrics.Integer()
public_file_count = metrics.Integer()
storage_byte_count = metrics.Integer()
public_file_count = metrics.Long()
storage_byte_count = metrics.Long()

0 comments on commit 2c38b1a

Please sign in to comment.