UNPKG

@underpostnet/underpost

Version:

Underpost Platform — end-to-end CI/CD and application-delivery toolchain CLI. Covers bare metal, Kubernetes, K3s, kubeadm, LXD, container/image orchestration, secrets, databases, cron jobs, monitoring, SSH, runners, PWA + Workbox delivery, and release orc

15 lines (9 loc) 400 B
import { Schema, model, Types } from 'mongoose'; // https://mongoosejs.com/docs/2.7.x/docs/schematypes.html const TestSchema = new Schema({ testId: { type: String, required: true, immutable: true }, value: { type: String, required: true, immutable: true }, }); const TestModel = model('Test', TestSchema); const ProviderSchema = TestSchema; export { TestSchema, TestModel, ProviderSchema };