active_record.cr
active_record.cr copied to clipboard
Create hangs
works: Person.get(4)
works: Person.all
works: p.name = "lol"; p.update
works: p = Person.new({fieldshere})
hangs: Person.new({fieldshere}).create
hangs: Person.create({fieldshere})
using latest crystal, macos.
I'm able to insert records to the database manually.
@matti Which database adapter are you using? And which version of the active_record and the adapter ?