mirror of
https://github.com/wassname/talk.git
synced 2026-06-28 20:24:56 +08:00
9 lines
169 B
JavaScript
9 lines
169 B
JavaScript
const mongoose = require('../../services/mongoose');
|
|
const Schema = mongoose.Schema;
|
|
|
|
const Migration = new Schema({
|
|
version: Number,
|
|
});
|
|
|
|
module.exports = Migration;
|