How can i enable postgres Extensions (eg: uuid) with in Kysely Migration File
const query = sql
create extension "uuid-ossp";
;
how to execute this raw query inside migration file up methodSolution:Jump to solution
Hey 👋
You can execute raw queries by passing your Kysely instance to
.execute
like this:
```ts...2 Replies
Solution
Hey 👋
You can execute raw queries by passing your Kysely instance to
.execute
like this:
Wow! Thanks man ❤️