Skip to content

Commit fee2924

Browse files
author
Alexei Pastuchov
committed
rename tests_infer_schema.snap to wundergraph_cli__print_schema__tests__infer_schema.snap
1 parent a0dc070 commit fee2924

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

wundergraph_cli/src/print_schema/snapshots/tests__infer_schema.snap renamed to wundergraph_cli/src/print_schema/snapshots/wundergraph_cli__print_schema__tests__infer_schema.snap

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,27 +7,27 @@ use wundergraph::scalar::WundergraphScalarValue;
77
use wundergraph::WundergraphEntity;
88

99
table! {
10-
infer_test.comments (id) {
11-
id -> Int4,
12-
post -> Nullable<Int4>,
13-
commenter -> Nullable<Int4>,
10+
comments (id) {
11+
id -> Integer,
12+
post -> Nullable<Integer>,
13+
commenter -> Nullable<Integer>,
1414
content -> Text,
1515
}
1616
}
1717

1818
table! {
19-
infer_test.posts (id) {
20-
id -> Int4,
21-
author -> Nullable<Int4>,
19+
posts (id) {
20+
id -> Integer,
21+
author -> Nullable<Integer>,
2222
title -> Text,
2323
datetime -> Nullable<Timestamp>,
2424
content -> Nullable<Text>,
2525
}
2626
}
2727

2828
table! {
29-
infer_test.users (id) {
30-
id -> Int4,
29+
users (id) {
30+
id -> Integer,
3131
name -> Text,
3232
}
3333
}

0 commit comments

Comments
 (0)