File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ impl<'c> SchemaManager<'c> {
41
41
}
42
42
43
43
/// Schema Creation
44
- impl < ' c > SchemaManager < ' c > {
44
+ impl SchemaManager < ' _ > {
45
45
pub async fn create_table ( & self , stmt : TableCreateStatement ) -> Result < ( ) , DbErr > {
46
46
self . exec_stmt ( stmt) . await
47
47
}
@@ -60,7 +60,7 @@ impl<'c> SchemaManager<'c> {
60
60
}
61
61
62
62
/// Schema Mutation
63
- impl < ' c > SchemaManager < ' c > {
63
+ impl SchemaManager < ' _ > {
64
64
pub async fn alter_table ( & self , stmt : TableAlterStatement ) -> Result < ( ) , DbErr > {
65
65
self . exec_stmt ( stmt) . await
66
66
}
@@ -95,7 +95,7 @@ impl<'c> SchemaManager<'c> {
95
95
}
96
96
97
97
/// Schema Inspection.
98
- impl < ' c > SchemaManager < ' c > {
98
+ impl SchemaManager < ' _ > {
99
99
pub async fn has_table < T > ( & self , table : T ) -> Result < bool , DbErr >
100
100
where
101
101
T : AsRef < str > ,
You can’t perform that action at this time.
0 commit comments