Mikias Abera
Mikias Abera
This PR adds wagmi configuration to the `hardhat.config.ts` and updates the hardhat version to the latest. The benefit of bumping hardhat to the latest is that newer versions of hardhat...
This would be done by add the `babel-plugins-transform-class-properties` package to `package.json` and adding a `.babelrc` file at the root with following: ```json { "plugins": [ "transform-class-properties" ] } ```
[crystal-pg](https://github.com/will/crystal-pg) already has support for json and jsonb types using `JSON::Any`. Adding support for this would be a useful feature for some people. ```crystal class Post < BaseModel table :posts...
[crystal-pg](https://github.com/will/crystal-pg) has support for geo types: `geo types: point, box, path, lseg, polygon, circle, line` I want to leave this here for discussion and as a reminder for future self,...
I don't think this is important atm since we can use raw sql: ```crystal execute "CREATE UNIQUE INDEX chapters_section_id_code_index ON sections USING btree (section_id, code);" ``` But I'd like to...
I would really like to see this feature because I use arrays quite often. I plan to work on this issue myself when I have the time, possibly next week....
Right now if you make a migration like: ```crystal def migrate create :admins do name : String # should be: add name : String end end ``` it throws: ```...
I used `hub` to get the old pull request and rebase it (awesome tool btw). There are a couple issues though: 1. The changes made for UUID types breaks the...