0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-01-27 21:39:16 -05:00

refactor(core): update filename to alteration (#2015)

This commit is contained in:
Gao Sun 2022-09-27 15:52:39 +08:00 committed by GitHub
parent 7b60b3028d
commit 5bd54484b4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -13,7 +13,7 @@ export const checkAlterationState = async (pool: DatabasePool) => {
}
const error = new Error(
`Found undeployed database alterations, you must deploy them first by "pnpm alteration deploy" command, reference: https://docs.logto.io/docs/recipes/deployment/#database-alteration`
`Found undeployed database alterations, you must deploy them first by "npm alteration deploy" command, reference: https://docs.logto.io/docs/recipes/deployment/#database-alteration`
);
if (allYes) {

View file

@ -6,7 +6,7 @@ import { DatabasePool } from 'slonik';
import { appendPath } from '@/utils/url';
import { addConnectors } from './add-connectors';
import { checkAlterationState } from './check-migration-state';
import { checkAlterationState } from './check-alteration-state';
import createPoolByEnv from './create-pool-by-env';
import loadOidcValues from './oidc';
import { isTrue } from './parameters';