ソースを参照

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()