Skip to content

Commit

Permalink
add comments to default migration values
Browse files Browse the repository at this point in the history
  • Loading branch information
jbr committed Jul 27, 2023
1 parent 9278cf3 commit 428c6c5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ impl MigrationTrait for Migration {
Query::update()
.table(Aggregator::Table)
.values([
(Aggregator::Vdafs, json!([1, 2, 3]).into()),
(Aggregator::QueryTypes, json!([1, 2]).into()),
(Aggregator::Vdafs, json!([1, 2, 3]).into()), // [VdafId::Prio3Count, VdafId::Prio3Sum, VdafId::Prio3Histogram]
(Aggregator::QueryTypes, json!([1, 2]).into()), // [QueryTypeId::TimeInterval, QueryTypeId::FixedSize]
])
.to_owned(),
)
Expand Down

0 comments on commit 428c6c5

Please sign in to comment.