MCPcopy Create free account
hub / github.com/SeaQL/sea-orm / unsigned_null

Function unsigned_null

sea-orm-migration/src/schema.rs:217–219  ·  view source on GitHub ↗
(col: T)

Source from the content-addressed store, hash-verified

215}
216
217pub fn unsigned_null<T: IntoIden>(col: T) -> ColumnDef {
218 ColumnDef::new(col).unsigned().null().take()
219}
220
221pub fn unsigned_uniq<T: IntoIden>(col: T) -> ColumnDef {
222 unsigned(col).unique_key().take()

Callers

nothing calls this directly

Calls 3

takeMethod · 0.80
newFunction · 0.50
nullMethod · 0.45

Tested by

no test coverage detected