Skip to content

Commit 41eefe2

Browse files
committed
Fixed missing backspace, released patch v0.8.2
1 parent d41299f commit 41eefe2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rorm-sql"
3-
version = "0.8.1"
3+
version = "0.8.2"
44
edition = "2021"
55
keywords = ["database", "abstraction-layer", "sqlite", "postgres", "mysql"]
66
categories = ["database"]

src/create_column.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ impl<'until_build, 'post_build> CreateColumn<'post_build>
435435
DbType::Double => write!(s, "double precision ").unwrap(),
436436
DbType::Boolean => write!(s, "boolean ").unwrap(),
437437
DbType::Date => write!(s, "date ").unwrap(),
438-
DbType::DateTime => write!(s, "timestamptz").unwrap(),
438+
DbType::DateTime => write!(s, "timestamptz ").unwrap(),
439439
DbType::Timestamp => write!(s, "timestamp ").unwrap(),
440440
DbType::Time => write!(s, "time ").unwrap(),
441441
};

0 commit comments

Comments
 (0)