Skip to content

Releases: kysely-org/kysely-ctl

v0.2.0 - kysely migrate list

06 May 00:41
Compare
Choose a tag to compare

Hey 👋

kysely migrate list [--debug] is working.
kysely migrate:list [--debug] is working.

it requires a kysely.config.ts file (in project root OR .config folder):

import { defineConfig } from 'kysely-ctl'
import database from 'better-sqlite3'

export default defineConfig({
  dialect: new SqliteDialect({
    database: database(":memory:"),
  }),
})

that's it. that's the release.

Full Changelog: v0.1.2...v0.2.0

v0.1.2 - kysely migrate make

03 May 22:43
Compare
Choose a tag to compare

Hey 👋

kysely migrate make <migration_name> [--extension=ts|mts|cts] [-x=ts|mts|cts] [--debug] is working.
kysely migrate:make <migration_name> [--extension=ts|mts|cts] [-x=ts|mts|cts] [--debug] is working.

that's it. that's the release.

Full Changelog: v0.1.1...v0.1.2