File tree Expand file tree Collapse file tree 8 files changed +2633
-42
lines changed
Expand file tree Collapse file tree 8 files changed +2633
-42
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,9 @@ import { version } from '../package.json'
99import {
1010 registerLocalCommands ,
1111 registerMigrateCommands ,
12+ registerModelsCommands ,
1213 registerQueryCommands ,
14+ registerSchemaCommands ,
1315 registerTableCommands ,
1416 registerUtilityCommands ,
1517} from '../src/cli/commands'
@@ -22,6 +24,8 @@ registerMigrateCommands(cli)
2224registerQueryCommands ( cli )
2325registerUtilityCommands ( cli )
2426registerLocalCommands ( cli )
27+ registerSchemaCommands ( cli )
28+ registerModelsCommands ( cli )
2529
2630// config - Show current configuration
2731cli
Original file line number Diff line number Diff line change 55import type { CAC } from 'cac'
66import { registerLocalCommands } from './local'
77import { registerMigrateCommands } from './migrate'
8+ import { registerModelsCommands } from './models'
89import { registerQueryCommands } from './query'
10+ import { registerSchemaCommands } from './schema'
911import { registerSeedCommands } from './seed'
1012import { registerTableCommands } from './table'
1113import { registerUtilityCommands } from './utility'
1214
1315export { registerLocalCommands } from './local'
1416export { registerMigrateCommands } from './migrate'
17+ export { registerModelsCommands } from './models'
1518export { registerQueryCommands } from './query'
19+ export { registerSchemaCommands } from './schema'
1620export { registerSeedCommands } from './seed'
1721export { registerTableCommands } from './table'
1822export { registerUtilityCommands } from './utility'
@@ -27,4 +31,6 @@ export function registerAllCommands(cli: CAC): void {
2731 registerSeedCommands ( cli )
2832 registerUtilityCommands ( cli )
2933 registerLocalCommands ( cli )
34+ registerSchemaCommands ( cli )
35+ registerModelsCommands ( cli )
3036}
You can’t perform that action at this time.
0 commit comments