Skip to content

Dately

Compare
Choose a tag to compare
@helje5 helje5 released this 07 Apr 12:13
· 67 commits to main since this release
c33488d

Bugfix: Was encoding Data columns as Date's 📅.

E.g.

CREATE TABLE app (
  app_id UUID NOT NULL PRIMARY KEY,
  icon Data
)

Would turn into

struct App {
  var id   : UUID
  var icon : Date? // <== instead of `Data` when Foundation is enabled in the generator
}