ColumnType

public struct ColumnType : RawRepresentable, Hashable

An SQL column type.

try db.create(table: "persons") { t in
    t.column("id", .integer).primaryKey()
    t.column("title", .text)
}

See https://www.sqlite.org/datatype3.html