File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed
wundergraph_cli/src/print_schema/snapshots Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -7,27 +7,27 @@ use wundergraph::scalar::WundergraphScalarValue;
7
7
use wundergraph ::WundergraphEntity ;
8
8
9
9
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 >,
14
14
content -> Text,
15
15
}
16
16
}
17
17
18
18
table! {
19
- infer_test . posts (id ) {
20
- id -> Int4 ,
21
- author -> Nullable<Int4 >,
19
+ posts (id ) {
20
+ id -> Integer ,
21
+ author -> Nullable<Integer >,
22
22
title -> Text ,
23
23
datetime -> Nullable<Timestamp >,
24
24
content -> Nullable<Text >,
25
25
}
26
26
}
27
27
28
28
table! {
29
- infer_test . users (id ) {
30
- id -> Int4 ,
29
+ users (id ) {
30
+ id -> Integer ,
31
31
name -> Text ,
32
32
}
33
33
}
You can’t perform that action at this time.
0 commit comments