소스 검색

Remove debugging information.

Kestrel 2 년 전
부모
커밋
8783b088e1
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 1
      microrm/src/model/create.rs

+ 0 - 1
microrm/src/model/create.rs

@@ -153,7 +153,6 @@ pub fn sql_for<T: crate::model::Entity>() -> (String, String) {
 
     for i in 1..T::column_count() {
         let col = <T::Column as std::convert::TryFrom<usize>>::try_from(i).unwrap();
-        println!("{}", T::name(col));
 
         let fk = T::foreign_keys()
             .iter()