flowviz
Version:
A framework which provides seamless integration with other phylogenetic tools and frameworks, while allowing workflow scheduling and execution, through the Apache Airflow workflow system.
23 lines (20 loc) • 400 B
JavaScript
const mongoose = require("mongoose");
const Schema = mongoose.Schema;
const WorkflowLogSchema = new Schema({
dag_id: {
type: String,
minlength: 3,
maxlength: 30,
required: true,
},
username: {
type: String,
minlength: 3,
maxlength: 20,
required: true,
},
log: {
type: Object,
},
});
module.exports = mongoose.model("WorkflowLog", WorkflowLogSchema);