@magic-mustard/sqlsync
Version:
SQLSync simplifies database schema evolution by allowing a declarative approach to table management
21 lines (20 loc) • 755 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.SyncCommand = void 0;
const chalk_1 = __importDefault(require("chalk"));
class SyncCommand {
register(program) {
program
.command('sync')
.description('Detect and merge pending schema changes')
.action((options) => {
console.log(chalk_1.default.blue('(Stub) Syncing changes...'));
// const config = this.configLoader.loadConfig(options.config);
// const state = this.stateManager.getState();
});
}
}
exports.SyncCommand = SyncCommand;