Releases: kysely-org/kysely-ctl
Releases · kysely-org/kysely-ctl
v0.2.0 - kysely migrate list
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
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