@knorm/soft-delete
Knorm plugin that enables soft-deletion and automates working with deleted
and
deleted_at
table fields.
Documentation
Visit the documentation site.
Soft-delete plugin for @knorm/knorm
Knorm plugin that enables soft-deletion and automates working with deleted
and
deleted_at
table fields.
Visit the documentation site.
All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.
Note: Version bump only for package @knorm/soft-delete
Instead of:
const knorm = require('@knorm/knorm');
const knormPostgres = require('@knorm/postgres');
const { Knorm } = knorm;
const { KnormPostgres } = knormPostgres;
Do:
const { knorm, Knorm } = require('@knorm/knorm');
const { knormPostgres, KnormPostgres } = require('@knorm/postgres');
deletedAt
if deleted
is true
(314fb15)