Kjell Nilsson

Results 1 issues of Kjell Nilsson

Code snippet ```        try self.db.create(table: "galaxies")            .column("id", type: .int, .primaryKey)            .column("name", type: .text)            .run().wait() ``` Generates SQL as `CREATE TABLE "galaxies"("id" INTEGER PRIMARY KEY DEFAULT UNIQUE, "name" TEXT) ` The...

enhancement