Skip to content

Commit

Permalink
[SomeCodable] stores as .array(of: .json) instead of .json (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
tanner0101 authored Dec 13, 2019
1 parent 2535037 commit 5a2fbd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/FluentBenchmark/FluentBenchmarker.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1540,7 +1540,7 @@ public final class FluentBenchmarker {
.field("id", .uuid, .identifier(auto: false))
.field("bar", .array(of: .int), .required)
.field("baz", .array(of: .string))
.field("qux", .json, .required)
.field("qux", .array(of: .json), .required)
.create()
}

Expand Down

0 comments on commit 5a2fbd6

Please sign in to comment.