Set column comment
(mut self, v: &str)
| 366 | } |
| 367 | /// Set column comment |
| 368 | pub fn comment(mut self, v: &str) -> Self { |
| 369 | self.comment = Some(v.into()); |
| 370 | self |
| 371 | } |
| 372 | |
| 373 | /// Mark the column as nullable |
| 374 | pub fn null(self) -> Self { |
no outgoing calls
no test coverage detected