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

21 lines (15 loc) 413 B
import { Schema, model, Types } from 'mongoose'; // https://mongoosejs.com/docs/2.7.x/docs/schematypes.html const DefaultSchema = new Schema( { 0: { type: String }, 1: { type: String }, 2: { type: String }, }, { timestamps: true, }, ); const DefaultModel = model('Default', DefaultSchema); const ProviderSchema = DefaultSchema; export { DefaultSchema, DefaultModel, ProviderSchema };