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;
77use wundergraph ::WundergraphEntity ;
88
99table ! {
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
1818table! {
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
2828table! {
29- infer_test . users (id ) {
30- id -> Int4 ,
29+ users (id ) {
30+ id -> Integer ,
3131 name -> Text ,
3232 }
3333}
You can’t perform that action at this time.
0 commit comments