# Knex Migration & Seed Commands # Create a new migration file npx knex migrate:make create_holidays_table --knexfile knexfile.cjs # Run all pending migrations npx knex migrate:latest --knexfile knexfile.cjs # Rollback last migration npx knex migrate:rollback --knexfile knexfile.cjs # Check migration status npx knex migrate:status --knexfile knexfile.cjs # Create a seed file npx knex seed:make holidays_seed --knexfile knexfile.cjs # Run seeds npx knex seed:run --knexfile knexfile.cjs