From a59b7aeae22a956d3db2311053cc8d346c34dbb4 Mon Sep 17 00:00:00 2001 From: Chris Tsang Date: Sun, 3 Apr 2022 22:06:39 +0800 Subject: [PATCH] Tweaks --- examples/graphql_example/Cargo.toml | 1 + .../migration/src/m20220101_000001_create_table.rs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/graphql_example/Cargo.toml b/examples/graphql_example/Cargo.toml index 7e906603..f26e417f 100644 --- a/examples/graphql_example/Cargo.toml +++ b/examples/graphql_example/Cargo.toml @@ -3,6 +3,7 @@ name = "sea-orm-graphql-example" authors = ["Aaron Leopold "] version = "0.1.0" edition = "2021" +publish = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [workspace] diff --git a/examples/graphql_example/migration/src/m20220101_000001_create_table.rs b/examples/graphql_example/migration/src/m20220101_000001_create_table.rs index 4f2147e9..0c754f6c 100644 --- a/examples/graphql_example/migration/src/m20220101_000001_create_table.rs +++ b/examples/graphql_example/migration/src/m20220101_000001_create_table.rs @@ -3,7 +3,7 @@ use entity::{ sea_orm::{DbBackend, EntityTrait, Schema}, }; use sea_schema::migration::{ - sea_query::{self, *}, + sea_query::*, *, };