浏览代码

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